##// END OF EJS Templates
Merge pull request #7434 from takluyver/restore-test-all-js...
Min RK -
r19892:098340ce merge
parent child Browse files
Show More
@@ -431,8 +431,11 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 js_testgroups = [g for g in testgroups if g.startswith(js_prefix)]
434 if 'js' in testgroups:
435 py_testgroups = [g for g in testgroups if g not in js_testgroups]
435 js_testgroups = all_js_groups()
436 else:
437 js_testgroups = [g for g in testgroups if g.startswith(js_prefix)]
438 py_testgroups = [g for g in testgroups if not g.startswith('js')]
436 else:
439 else:
437 py_testgroups = py_test_group_names
440 py_testgroups = py_test_group_names
438 if not options.all:
441 if not options.all:
General Comments 0
You need to be logged in to leave comments. Login now