diff --git a/IPython/testing/iptestcontroller.py b/IPython/testing/iptestcontroller.py index ce8bc80..9ec5934 100644 --- a/IPython/testing/iptestcontroller.py +++ b/IPython/testing/iptestcontroller.py @@ -224,7 +224,8 @@ def prepare_controllers(options): testgroups = options.testgroups if testgroups: - py_testgroups = [g for g in testgroups if g in py_test_group_names] + py_testgroups = [g for g in testgroups if (g in py_test_group_names) \ + or g.startswith('IPython')] js_testgroups = [g for g in testgroups if g in js_test_group_names] else: py_testgroups = py_test_group_names