pdb-tools 2.5.0__py3-none-any.whl → 2.5.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. {pdb_tools-2.5.0.dist-info → pdb_tools-2.5.1.dist-info}/METADATA +19 -11
  2. pdb_tools-2.5.1.dist-info/RECORD +55 -0
  3. {pdb_tools-2.5.0.dist-info → pdb_tools-2.5.1.dist-info}/WHEEL +1 -1
  4. {pdb_tools-2.5.0.dist-info → pdb_tools-2.5.1.dist-info}/entry_points.txt +0 -1
  5. {pdb_tools-2.5.0.dist-info → pdb_tools-2.5.1.dist-info}/top_level.txt +0 -1
  6. pdbtools/pdb_tidy.py +17 -9
  7. pdb_tools-2.5.0.dist-info/RECORD +0 -105
  8. tests/__init__.py +0 -38
  9. tests/config.py +0 -25
  10. tests/test_pdb_b.py +0 -161
  11. tests/test_pdb_chain.py +0 -160
  12. tests/test_pdb_chainbows.py +0 -140
  13. tests/test_pdb_chainxseg.py +0 -156
  14. tests/test_pdb_chkensemble.py +0 -191
  15. tests/test_pdb_delchain.py +0 -165
  16. tests/test_pdb_delelem.py +0 -165
  17. tests/test_pdb_delhetatm.py +0 -115
  18. tests/test_pdb_delinsertion.py +0 -226
  19. tests/test_pdb_delres.py +0 -241
  20. tests/test_pdb_delresname.py +0 -171
  21. tests/test_pdb_element.py +0 -151
  22. tests/test_pdb_fixinsert.py +0 -223
  23. tests/test_pdb_fromcif.py +0 -124
  24. tests/test_pdb_gap.py +0 -125
  25. tests/test_pdb_head.py +0 -142
  26. tests/test_pdb_intersect.py +0 -139
  27. tests/test_pdb_keepcoord.py +0 -115
  28. tests/test_pdb_merge.py +0 -106
  29. tests/test_pdb_mkensemble.py +0 -132
  30. tests/test_pdb_occ.py +0 -161
  31. tests/test_pdb_reatom.py +0 -243
  32. tests/test_pdb_reres.py +0 -281
  33. tests/test_pdb_rplchain.py +0 -172
  34. tests/test_pdb_rplresname.py +0 -172
  35. tests/test_pdb_seg.py +0 -160
  36. tests/test_pdb_segxchain.py +0 -146
  37. tests/test_pdb_selaltloc.py +0 -943
  38. tests/test_pdb_selatom.py +0 -165
  39. tests/test_pdb_selchain.py +0 -210
  40. tests/test_pdb_selelem.py +0 -165
  41. tests/test_pdb_selhetatm.py +0 -116
  42. tests/test_pdb_selmodel.py +0 -165
  43. tests/test_pdb_selres.py +0 -257
  44. tests/test_pdb_selresname.py +0 -171
  45. tests/test_pdb_selseg.py +0 -165
  46. tests/test_pdb_shiftres.py +0 -241
  47. tests/test_pdb_sort.py +0 -254
  48. tests/test_pdb_splitchain.py +0 -242
  49. tests/test_pdb_splitmodel.py +0 -235
  50. tests/test_pdb_splitseg.py +0 -251
  51. tests/test_pdb_tidy.py +0 -312
  52. tests/test_pdb_tocif.py +0 -238
  53. tests/test_pdb_tofasta.py +0 -158
  54. tests/test_pdb_uniqname.py +0 -156
  55. tests/test_pdb_validate.py +0 -142
  56. tests/test_pdb_wc.py +0 -161
  57. tests/utils.py +0 -56
  58. {pdb_tools-2.5.0.dist-info → pdb_tools-2.5.1.dist-info/licenses}/LICENSE +0 -0
tests/test_pdb_delres.py DELETED
@@ -1,241 +0,0 @@
1
- #!/usr/bin/env python
2
- # -*- coding: utf-8 -*-
3
- #
4
- # Copyright 2018 João Pedro Rodrigues
5
- #
6
- # Licensed under the Apache License, Version 2.0 (the "License");
7
- # you may not use this file except in compliance with the License.
8
- # You may obtain a copy of the License at
9
- #
10
- # http://www.apache.org/licenses/LICENSE-2.0
11
- #
12
- # Unless required by applicable law or agreed to in writing, software
13
- # distributed under the License is distributed on an "AS IS" BASIS,
14
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
- # See the License for the specific language governing permissions and
16
- # limitations under the License.
17
-
18
- """
19
- Unit Tests for `pdb_delres`.
20
- """
21
-
22
- import os
23
- import sys
24
- import unittest
25
-
26
- from config import data_dir
27
- from utils import OutputCapture
28
-
29
-
30
- class TestTool(unittest.TestCase):
31
- """
32
- Generic class for testing tools.
33
- """
34
-
35
- def setUp(self):
36
- # Dynamically import the module
37
- name = 'pdbtools.pdb_delres'
38
- self.module = __import__(name, fromlist=[''])
39
-
40
- def exec_module(self):
41
- """
42
- Execs module.
43
- """
44
-
45
- with OutputCapture() as output:
46
- try:
47
- self.module.main()
48
- except SystemExit as e:
49
- self.retcode = e.code
50
-
51
- self.stdout = output.stdout
52
- self.stderr = output.stderr
53
-
54
- return
55
-
56
- def test_range_1(self):
57
- """$ pdb_delres -1:5 data/dummy.pdb"""
58
-
59
- # Simulate input
60
- sys.argv = ['', '-1:5', os.path.join(data_dir, 'dummy.pdb')]
61
-
62
- # Execute the script
63
- self.exec_module()
64
-
65
- # Validate results
66
- self.assertEqual(self.retcode, 0)
67
- self.assertEqual(len(self.stdout), 60)
68
- self.assertEqual(len(self.stderr), 0)
69
-
70
- def test_range_2(self):
71
- """$ pdb_delres -1: data/dummy.pdb"""
72
-
73
- # Simulate input
74
- sys.argv = ['', '-1:', os.path.join(data_dir, 'dummy.pdb')]
75
-
76
- # Execute the script
77
- self.exec_module()
78
-
79
- # Validate results
80
- self.assertEqual(self.retcode, 0)
81
- self.assertEqual(len(self.stdout), 25)
82
- self.assertEqual(len(self.stderr), 0)
83
-
84
- def test_range_3(self):
85
- """$ pdb_delres -:-1 data/dummy.pdb"""
86
-
87
- # Simulate input
88
- sys.argv = ['', '-:-1', os.path.join(data_dir, 'dummy.pdb')]
89
-
90
- # Execute the script
91
- self.exec_module()
92
-
93
- # Validate results
94
- self.assertEqual(self.retcode, 0)
95
- self.assertEqual(len(self.stdout), 195)
96
- self.assertEqual(len(self.stderr), 0)
97
-
98
- def test_range_4(self):
99
- """$ pdb_delres -::5 data/dummy.pdb"""
100
-
101
- # Simulate input
102
- sys.argv = ['', '-::5', os.path.join(data_dir, 'dummy.pdb')]
103
-
104
- # Execute the script
105
- self.exec_module()
106
-
107
- # Validate results
108
- self.assertEqual(self.retcode, 0)
109
- self.assertEqual(len(self.stdout), 160)
110
- self.assertEqual(len(self.stderr), 0)
111
-
112
- def test_invalid_range_1(self):
113
- """$ pdb_delres --9998:: data/dummy.pdb"""
114
-
115
- # Simulate input
116
- sys.argv = ['', '--9998::', os.path.join(data_dir, 'dummy.pdb')]
117
-
118
- # Execute the script
119
- self.exec_module()
120
-
121
- # Validate results
122
- self.assertEqual(self.retcode, 1)
123
- self.assertEqual(len(self.stdout), 0)
124
- self.assertEqual(self.stderr[0][:22],
125
- "ERROR!! Starting value")
126
-
127
- def test_invalid_range_2(self):
128
- """$ pdb_delres -:10000: data/dummy.pdb"""
129
-
130
- # Simulate input
131
- sys.argv = ['', '-:10000:', os.path.join(data_dir, 'dummy.pdb')]
132
-
133
- # Execute the script
134
- self.exec_module()
135
-
136
- # Validate results
137
- self.assertEqual(self.retcode, 1)
138
- self.assertEqual(len(self.stdout), 0)
139
- self.assertEqual(self.stderr[0][:22],
140
- "ERROR!! End value must")
141
-
142
- def test_invalid_range_3(self):
143
- """$ pdb_delres -::: data/dummy.pdb"""
144
-
145
- # Simulate input
146
- sys.argv = ['', '-:::', os.path.join(data_dir, 'dummy.pdb')]
147
-
148
- # Execute the script
149
- self.exec_module()
150
-
151
- # Validate results
152
- self.assertEqual(self.retcode, 1)
153
- self.assertEqual(len(self.stdout), 0)
154
- self.assertEqual(self.stderr[0][:21],
155
- "ERROR!! Residue range")
156
-
157
- def test_invalid_range_4(self):
158
- """$ pdb_delres -5:1:: data/dummy.pdb"""
159
-
160
- # Simulate input
161
- sys.argv = ['', '-5:1::', os.path.join(data_dir, 'dummy.pdb')]
162
-
163
- # Execute the script
164
- self.exec_module()
165
-
166
- # Validate results
167
- self.assertEqual(self.retcode, 1)
168
- self.assertEqual(len(self.stdout), 0)
169
- self.assertEqual(self.stderr[0][:21],
170
- "ERROR!! Residue range")
171
-
172
- def test_file_not_found(self):
173
- """$ pdb_delres not_existing.pdb"""
174
-
175
- afile = os.path.join(data_dir, 'not_existing.pdb')
176
- sys.argv = ['', afile]
177
-
178
- self.exec_module()
179
-
180
- self.assertEqual(self.retcode, 1) # exit code is 1 (error)
181
- self.assertEqual(len(self.stdout), 0) # nothing written to stdout
182
- self.assertEqual(self.stderr[0][:22],
183
- "ERROR!! File not found") # proper error message
184
-
185
- @unittest.skipIf(os.getenv('SKIP_TTY_TESTS'), 'skip on GHA - no TTY')
186
- def test_file_missing(self):
187
- """$ pdb_delres -1:10"""
188
-
189
- sys.argv = ['', '-1:10']
190
-
191
- self.exec_module()
192
-
193
- self.assertEqual(self.retcode, 1)
194
- self.assertEqual(len(self.stdout), 0) # no output
195
- self.assertEqual(self.stderr[0],
196
- "ERROR!! No data to process!")
197
-
198
- @unittest.skipIf(os.getenv('SKIP_TTY_TESTS'), 'skip on GHA - no TTY')
199
- def test_helptext(self):
200
- """$ pdb_delres"""
201
-
202
- sys.argv = ['']
203
-
204
- self.exec_module()
205
-
206
- self.assertEqual(self.retcode, 1) # ensure the program exited gracefully.
207
- self.assertEqual(len(self.stdout), 0) # no output
208
- self.assertEqual(self.stderr, self.module.__doc__.split("\n")[:-1])
209
-
210
- def test_invalid_option(self):
211
- """$ pdb_delres -A:B data/dummy.pdb"""
212
-
213
- sys.argv = ['', '-A:B', os.path.join(data_dir, 'dummy.pdb')]
214
-
215
- self.exec_module()
216
-
217
- self.assertEqual(self.retcode, 1)
218
- self.assertEqual(len(self.stdout), 0)
219
- self.assertEqual(self.stderr[0][:39],
220
- "ERROR!! Starting value must be numerica")
221
-
222
- def test_not_an_option(self):
223
- """$ pdb_delres 20 data/dummy.pdb"""
224
-
225
- sys.argv = ['', '20', os.path.join(data_dir, 'dummy.pdb')]
226
-
227
- self.exec_module()
228
-
229
- self.assertEqual(self.retcode, 1)
230
- self.assertEqual(len(self.stdout), 0)
231
- self.assertEqual(self.stderr[0],
232
- "ERROR! First argument is not an option: '20'")
233
-
234
-
235
- if __name__ == '__main__':
236
- from config import test_dir
237
-
238
- mpath = os.path.abspath(os.path.join(test_dir, '..'))
239
- sys.path.insert(0, mpath) # so we load dev files before any installation
240
-
241
- unittest.main()
@@ -1,171 +0,0 @@
1
- #!/usr/bin/env python
2
- # -*- coding: utf-8 -*-
3
- #
4
- # Copyright 2018 João Pedro Rodrigues
5
- #
6
- # Licensed under the Apache License, Version 2.0 (the "License");
7
- # you may not use this file except in compliance with the License.
8
- # You may obtain a copy of the License at
9
- #
10
- # http://www.apache.org/licenses/LICENSE-2.0
11
- #
12
- # Unless required by applicable law or agreed to in writing, software
13
- # distributed under the License is distributed on an "AS IS" BASIS,
14
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
- # See the License for the specific language governing permissions and
16
- # limitations under the License.
17
-
18
- """
19
- Unit Tests for `pdb_delresname`.
20
- """
21
-
22
- import os
23
- import sys
24
- import unittest
25
-
26
- from config import data_dir
27
- from utils import OutputCapture
28
-
29
-
30
- class TestTool(unittest.TestCase):
31
- """
32
- Generic class for testing tools.
33
- """
34
-
35
- def setUp(self):
36
- # Dynamically import the module
37
- name = 'pdbtools.pdb_delresname'
38
- self.module = __import__(name, fromlist=[''])
39
-
40
- def exec_module(self):
41
- """
42
- Execs module.
43
- """
44
-
45
- with OutputCapture() as output:
46
- try:
47
- self.module.main()
48
- except SystemExit as e:
49
- self.retcode = e.code
50
-
51
- self.stdout = output.stdout
52
- self.stderr = output.stderr
53
-
54
- return
55
-
56
- def test_single_sele(self):
57
- """$ pdb_delresname -ARG data/dummy.pdb"""
58
-
59
- # Simulate input
60
- sys.argv = ['', '-ARG', os.path.join(data_dir, 'dummy.pdb')]
61
-
62
- # Execute the script
63
- self.exec_module()
64
-
65
- # Validate results
66
- self.assertEqual(self.retcode, 0)
67
- self.assertEqual(len(self.stdout), 128)
68
- self.assertEqual(len(self.stderr), 0)
69
-
70
- def test_multiple_sele(self):
71
- """$ pdb_delresname -ARG,CA data/dummy.pdb"""
72
-
73
- # Simulate input
74
- sys.argv = ['', '-ARG,CA', os.path.join(data_dir, 'dummy.pdb')]
75
-
76
- # Execute the script
77
- self.exec_module()
78
-
79
- # Validate results
80
- self.assertEqual(self.retcode, 0)
81
- self.assertEqual(len(self.stdout), 127)
82
- self.assertEqual(len(self.stderr), 0)
83
-
84
- def test_empty_sele(self):
85
- """$ pdb_delresname - data/dummy.pdb"""
86
-
87
- # Simulate input
88
- sys.argv = ['', '-', os.path.join(data_dir, 'dummy.pdb')]
89
-
90
- # Execute the script
91
- self.exec_module()
92
-
93
- # Validate results
94
- self.assertEqual(self.retcode, 1)
95
- self.assertEqual(len(self.stdout), 0)
96
- self.assertEqual(self.stderr[0][:22],
97
- "ERROR!! Residue name s")
98
-
99
- def test_invalid_sele(self):
100
- """$ pdb_delresname -ABCD data/dummy.pdb"""
101
-
102
- # Simulate input
103
- sys.argv = ['', '-ABCD', os.path.join(data_dir, 'dummy.pdb')]
104
-
105
- # Execute the script
106
- self.exec_module()
107
-
108
- # Validate results
109
- self.assertEqual(self.retcode, 1)
110
- self.assertEqual(len(self.stdout), 0)
111
- self.assertEqual(self.stderr[0][:22],
112
- "ERROR!! Residue name i")
113
-
114
- def test_file_not_found(self):
115
- """$ pdb_delresname not_existing.pdb"""
116
-
117
- afile = os.path.join(data_dir, 'not_existing.pdb')
118
- sys.argv = ['', afile]
119
-
120
- self.exec_module()
121
-
122
- self.assertEqual(self.retcode, 1) # exit code is 1 (error)
123
- self.assertEqual(len(self.stdout), 0) # nothing written to stdout
124
- self.assertEqual(self.stderr[0][:22],
125
- "ERROR!! File not found") # proper error message
126
-
127
- @unittest.skipIf(os.getenv('SKIP_TTY_TESTS'), 'skip on GHA - no TTY')
128
- def test_file_missing(self):
129
- """$ pdb_delresname -ARG"""
130
-
131
- sys.argv = ['', '-ARG']
132
-
133
- self.exec_module()
134
-
135
- self.assertEqual(self.retcode, 1)
136
- self.assertEqual(len(self.stdout), 0) # no output
137
- self.assertEqual(self.stderr[0],
138
- "ERROR!! No data to process!")
139
-
140
- @unittest.skipIf(os.getenv('SKIP_TTY_TESTS'), 'skip on GHA - no TTY')
141
- def test_helptext(self):
142
- """$ pdb_delresname"""
143
-
144
- sys.argv = ['']
145
-
146
- self.exec_module()
147
-
148
- self.assertEqual(self.retcode, 1) # ensure the program exited gracefully.
149
- self.assertEqual(len(self.stdout), 0) # no output
150
- self.assertEqual(self.stderr, self.module.__doc__.split("\n")[:-1])
151
-
152
- def test_not_an_option(self):
153
- """$ pdb_delresname 20 data/dummy.pdb"""
154
-
155
- sys.argv = ['', '20', os.path.join(data_dir, 'dummy.pdb')]
156
-
157
- self.exec_module()
158
-
159
- self.assertEqual(self.retcode, 1)
160
- self.assertEqual(len(self.stdout), 0)
161
- self.assertEqual(self.stderr[0],
162
- "ERROR! First argument is not an option: '20'")
163
-
164
-
165
- if __name__ == '__main__':
166
- from config import test_dir
167
-
168
- mpath = os.path.abspath(os.path.join(test_dir, '..'))
169
- sys.path.insert(0, mpath) # so we load dev files before any installation
170
-
171
- unittest.main()
tests/test_pdb_element.py DELETED
@@ -1,151 +0,0 @@
1
- #!/usr/bin/env python
2
- # -*- coding: utf-8 -*-
3
- #
4
- # Copyright 2018 João Pedro Rodrigues
5
- #
6
- # Licensed under the Apache License, Version 2.0 (the "License");
7
- # you may not use this file except in compliance with the License.
8
- # You may obtain a copy of the License at
9
- #
10
- # http://www.apache.org/licenses/LICENSE-2.0
11
- #
12
- # Unless required by applicable law or agreed to in writing, software
13
- # distributed under the License is distributed on an "AS IS" BASIS,
14
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
- # See the License for the specific language governing permissions and
16
- # limitations under the License.
17
-
18
- """
19
- Unit Tests for `pdb_element`.
20
- """
21
-
22
- import os
23
- import sys
24
- import unittest
25
-
26
- from config import data_dir
27
- from utils import OutputCapture
28
-
29
-
30
- class TestTool(unittest.TestCase):
31
- """
32
- Generic class for testing tools.
33
- """
34
-
35
- def setUp(self):
36
- # Dynamically import the module
37
- name = 'pdbtools.pdb_element'
38
- self.module = __import__(name, fromlist=[''])
39
-
40
- def exec_module(self):
41
- """
42
- Execs module.
43
- """
44
-
45
- with OutputCapture() as output:
46
- try:
47
- self.module.main()
48
- except SystemExit as e:
49
- self.retcode = e.code
50
-
51
- self.stdout = output.stdout
52
- self.stderr = output.stderr
53
-
54
- return
55
-
56
- def test_default(self):
57
- """$ pdb_element data/dummy.pdb"""
58
-
59
- # Simulate input
60
- sys.argv = ['', os.path.join(data_dir, 'dummy.pdb')]
61
-
62
- # Execute the script
63
- self.exec_module()
64
-
65
- # Validate results
66
- self.assertEqual(self.retcode, 0) # ensure the program exited OK.
67
- self.assertEqual(len(self.stdout), 204) # no lines deleted
68
- self.assertEqual(len(self.stderr), 0) # no errors
69
-
70
- element_cols = [l[76:78] for l in self.stdout]
71
-
72
- # Test content
73
- assigned = [l for l in element_cols if l.strip()]
74
- self.assertEqual(len(assigned), 185) # ignore TER/END & headers
75
-
76
- # Test order
77
- element_list = [' ', ' ', ' ', ' ', ' ', ' ', '', '', '', '', '',
78
- '', '', ' N', ' H', ' H', ' H', ' C', ' H', ' C', ' H',
79
- ' H', ' C', ' H', ' H', ' C', ' H', ' H', ' N', ' H',
80
- ' C', ' N', ' H', ' H', ' N', ' H', ' H', ' C', ' O',
81
- ' N', ' H', ' C', ' H', ' C', ' H', ' H', ' C', ' H',
82
- ' H', ' C', ' O', ' O', ' C', ' O', ' N', ' H', ' C',
83
- ' H', ' C', ' H', ' H', ' H', ' C', ' O', '', ' N',
84
- ' H', ' H', ' H', ' C', ' C', ' H', ' C', ' H', ' H',
85
- ' C', ' O', ' N', ' H', ' H', ' C', ' O', ' N', ' H',
86
- ' C', ' H', ' C', ' H', ' H', ' C', ' H', ' H', ' C',
87
- ' H', ' H', ' N', ' H', ' C', ' N', ' H', ' H', ' N',
88
- ' H', ' H', ' C', ' O', ' N', ' H', ' C', ' H', ' C',
89
- ' H', ' H', ' C', ' H', ' H', ' C', ' O', ' O', ' C',
90
- ' O', ' ', ' N', ' H', ' H', ' H', ' C', ' H', ' C',
91
- ' H', ' H', ' C', ' H', ' H', ' C', ' H', ' H', ' N',
92
- ' H', ' C', ' N', ' H', ' H', ' N', ' H', ' H', ' C',
93
- ' O', ' N', ' H', ' C', ' H', ' C', ' H', ' H', ' C',
94
- ' H', ' H', ' C', ' O', ' O', ' C', ' O', ' N', ' C',
95
- ' C', ' O', ' C', ' C', ' S', ' C', ' ', ' P', ' O',
96
- ' O', ' O', ' C', ' C', ' O', ' C', ' O', ' C', ' C',
97
- ' N', ' C', ' O', ' N', ' C', ' O', ' C', ' C', ' C',
98
- 'CA', ' O', ' O', ' O', ' O', ' O', ' O', ' O', ' O',
99
- ' ', '', '']
100
-
101
- self.assertEqual(element_cols, element_list)
102
-
103
- def test_file_not_found(self):
104
- """$ pdb_element not_existing.pdb"""
105
-
106
- # Error (file not found)
107
- afile = os.path.join(data_dir, 'not_existing.pdb')
108
- sys.argv = ['', afile]
109
-
110
- # Execute the script
111
- self.exec_module()
112
-
113
- self.assertEqual(self.retcode, 1) # exit code is 1 (error)
114
- self.assertEqual(len(self.stdout), 0) # nothing written to stdout
115
- self.assertEqual(self.stderr[0][:22],
116
- "ERROR!! File not found") # proper error message
117
-
118
- @unittest.skipIf(os.getenv('SKIP_TTY_TESTS'), 'skip on GHA - no TTY')
119
- def test_helptext(self):
120
- """$ pdb_element"""
121
-
122
- sys.argv = ['']
123
-
124
- # Execute the script
125
- self.exec_module()
126
-
127
- self.assertEqual(self.retcode, 1) # ensure the program exited gracefully.
128
- self.assertEqual(len(self.stdout), 0) # no output
129
- self.assertEqual(self.stderr, self.module.__doc__.split("\n")[:-1])
130
-
131
- def test_invalid_option(self):
132
- """$ pdb_element -A data/dummy.pdb"""
133
-
134
- sys.argv = ['', '-A', os.path.join(data_dir, 'dummy.pdb')]
135
-
136
- # Execute the script
137
- self.exec_module()
138
-
139
- self.assertEqual(self.retcode, 1)
140
- self.assertEqual(len(self.stdout), 0)
141
- self.assertEqual(self.stderr[0][:36],
142
- "ERROR!! Script takes 1 argument, not")
143
-
144
-
145
- if __name__ == '__main__':
146
- from config import test_dir
147
-
148
- mpath = os.path.abspath(os.path.join(test_dir, '..'))
149
- sys.path.insert(0, mpath) # so we load dev files before any installation
150
-
151
- unittest.main()