not boxed (doesn't work on my system)

Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
2018-03-12 12:21:12 -04:00
parent 77e2ca1a85
commit ccffc02547
+1 -2
View File
@@ -18,8 +18,7 @@ class PyTest(TestCommand):
def initialize_options(self):
TestCommand.initialize_options(self)
try:
from multiprocessing import cpu_count
self.pytest_args = ['-n', str(cpu_count()), '--boxed']
self.pytest_args = ['-n', 'auto']
except (ImportError, NotImplementedError):
self.pytest_args = ['-n', '1', '--boxed']