Commit 98bf9f9d by Calen Pennington

Enable concurrency (but not randomization) in LMS unit tests

parent 9ba70484
......@@ -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)
......
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