From 440dffe6e9d0d08df858711d074d5172a91365a3 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 12 Mar 2018 12:27:10 -0400 Subject: [PATCH] this should always work, i believe Signed-off-by: Kenneth Reitz --- setup.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/setup.py b/setup.py index c50d4d85..6da71881 100755 --- a/setup.py +++ b/setup.py @@ -17,10 +17,7 @@ class PyTest(TestCommand): def initialize_options(self): TestCommand.initialize_options(self) - try: - self.pytest_args = ['-n', 'auto'] - except (ImportError, NotImplementedError): - self.pytest_args = ['-n', '1', '--boxed'] + self.pytest_args = ['-n', 'auto'] def finalize_options(self): TestCommand.finalize_options(self)