From ccffc02547e92d59d77d2cee8c3c62ea5fcc1c22 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 12 Mar 2018 12:21:12 -0400 Subject: [PATCH] not boxed (doesn't work on my system) Signed-off-by: Kenneth Reitz --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 2782b1c7..c50d4d85 100755 --- a/setup.py +++ b/setup.py @@ -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']