Commit 2afc9e8c by Calen Pennington

Don't use the --processes argument at all of processes=0

parent 7ca92f25
......@@ -158,9 +158,12 @@ class SystemTestSuite(NoseTestSuite):
self.extra_args,
'--with-xunitmp',
'--xunitmp-file={}'.format(self.report_dir / "nosetests.xml"),
'--processes={}'.format(self.processes),
'--with-database-isolation',
]
if self.processes != 0:
cmd.append('--processes={}'.format(self.processes))
if self.randomize:
cmd.append('--with-randomly')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment