From e934687fed3003ea34e9181cdada89879ae8a5b1 Mon Sep 17 00:00:00 2001 From: MinRK Date: Sun, 27 Apr 2014 16:18:51 -0700 Subject: [PATCH] don't test js test groups by default since they are huge and slow, treat the like parallel (also huge and slow) --- IPython/testing/iptestcontroller.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/IPython/testing/iptestcontroller.py b/IPython/testing/iptestcontroller.py index adc2ea132..47118dc7e 100644 --- a/IPython/testing/iptestcontroller.py +++ b/IPython/testing/iptestcontroller.py @@ -306,9 +306,11 @@ def prepare_controllers(options): js_testgroups = [g for g in testgroups if g not in py_testgroups] else: py_testgroups = py_test_group_names - js_testgroups = all_js_groups() if not options.all: + js_testgroups = [] test_sections['parallel'].enabled = False + else: + js_testgroups = all_js_groups() c_js = [JSController(name) for name in js_testgroups] c_py = [PyTestController(name, options) for name in py_testgroups]