From d729dfbbe2aef3e896be67e8523dc4def058f78c Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Thu, 24 Oct 2013 16:09:22 -0700 Subject: [PATCH] Fix passing extra arguments to Python test controllers --- IPython/testing/iptestcontroller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IPython/testing/iptestcontroller.py b/IPython/testing/iptestcontroller.py index 9ec5934a7..56e24d994 100644 --- a/IPython/testing/iptestcontroller.py +++ b/IPython/testing/iptestcontroller.py @@ -237,7 +237,7 @@ def prepare_controllers(options): c_py = [PyTestController(name) for name in py_testgroups] configure_py_controllers(c_py, xunit=options.xunit, - coverage=options.coverage) + coverage=options.coverage, extra_args=options.extra_args) controllers = c_py + c_js to_run = [c for c in controllers if c.will_run]