Enable concurrency (but not randomization) in LMS unit tests

This commit is contained in:
Calen Pennington
2016-05-20 08:57:47 -04:00
parent 9ba7048415
commit 98bf9f9dea

View File

@@ -128,7 +128,7 @@ class SystemTestSuite(NoseTestSuite):
if self.processes is None:
# Use one process per core for LMS tests, and no multiprocessing
# otherwise.
self.processes = 0
self.processes = -1 if self.root == 'lms' else 0
self.processes = int(self.processes)