##// END OF EJS Templates
Merge pull request #7405 from jhamrick/fix-js-tests...
Thomas Kluyver -
r19852:351430cd merge
parent child Browse files
Show More
@@ -431,9 +431,8 b' def prepare_controllers(options):'
431 not to run."""
431 not to run."""
432 testgroups = options.testgroups
432 testgroups = options.testgroups
433 if testgroups:
433 if testgroups:
434 alljs = all_js_groups()
435 js_testgroups = [g for g in testgroups if g.startswith(js_prefix)]
434 js_testgroups = [g for g in testgroups if g.startswith(js_prefix)]
436 py_testgroups = [g for g in testgroups if g not in alljs]
435 py_testgroups = [g for g in testgroups if g not in js_testgroups]
437 else:
436 else:
438 py_testgroups = py_test_group_names
437 py_testgroups = py_test_group_names
439 if not options.all:
438 if not options.all:
General Comments 0
You need to be logged in to leave comments. Login now