this should always work, i believe

Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
2018-03-12 12:27:10 -04:00
parent 3ac6ee9ce4
commit 440dffe6e9
+1 -4
View File
@@ -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)