##// END OF EJS Templates
Fix passing extra arguments to Python test controllers
Thomas Kluyver -
Show More
@@ -237,7 +237,7 b' def prepare_controllers(options):'
237 c_py = [PyTestController(name) for name in py_testgroups]
237 c_py = [PyTestController(name) for name in py_testgroups]
238
238
239 configure_py_controllers(c_py, xunit=options.xunit,
239 configure_py_controllers(c_py, xunit=options.xunit,
240 coverage=options.coverage)
240 coverage=options.coverage, extra_args=options.extra_args)
241
241
242 controllers = c_py + c_js
242 controllers = c_py + c_js
243 to_run = [c for c in controllers if c.will_run]
243 to_run = [c for c in controllers if c.will_run]
General Comments 0
You need to be logged in to leave comments. Login now