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): ...@@ -158,9 +158,12 @@ class SystemTestSuite(NoseTestSuite):
self.extra_args, self.extra_args,
'--with-xunitmp', '--with-xunitmp',
'--xunitmp-file={}'.format(self.report_dir / "nosetests.xml"), '--xunitmp-file={}'.format(self.report_dir / "nosetests.xml"),
'--processes={}'.format(self.processes),
'--with-database-isolation', '--with-database-isolation',
] ]
if self.processes != 0:
cmd.append('--processes={}'.format(self.processes))
if self.randomize: if self.randomize:
cmd.append('--with-randomly') 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