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

This commit is contained in:
Calen Pennington
2016-06-03 10:03:23 -04:00
parent 7ca92f255a
commit 2afc9e8c16

View File

@@ -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')