Show More
@@ -431,8 +431,11 def prepare_controllers(options): | |||
|
431 | 431 | not to run.""" |
|
432 | 432 | testgroups = options.testgroups |
|
433 | 433 | if testgroups: |
|
434 | js_testgroups = [g for g in testgroups if g.startswith(js_prefix)] | |
|
435 | py_testgroups = [g for g in testgroups if g not in js_testgroups] | |
|
434 | if 'js' in 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 | 439 | else: |
|
437 | 440 | py_testgroups = py_test_group_names |
|
438 | 441 | if not options.all: |
General Comments 0
You need to be logged in to leave comments.
Login now