##// END OF EJS Templates
Allow running Python tests on one section of the codebase
Thomas Kluyver -
Show More
@@ -224,7 +224,8 b' def prepare_controllers(options):'
224 testgroups = options.testgroups
224 testgroups = options.testgroups
225
225
226 if testgroups:
226 if testgroups:
227 py_testgroups = [g for g in testgroups if g in py_test_group_names]
227 py_testgroups = [g for g in testgroups if (g in py_test_group_names) \
228 or g.startswith('IPython')]
228 js_testgroups = [g for g in testgroups if g in js_test_group_names]
229 js_testgroups = [g for g in testgroups if g in js_test_group_names]
229 else:
230 else:
230 py_testgroups = py_test_group_names
231 py_testgroups = py_test_group_names
General Comments 0
You need to be logged in to leave comments. Login now