mirror of https://github.com/flaggo/pydu.git
remove --box from setup.py
This commit is contained in:
parent
3a4ab821fe
commit
45cefd801e
4
setup.py
4
setup.py
|
@ -12,9 +12,9 @@ class PyTest(TestCommand):
|
|||
TestCommand.initialize_options(self)
|
||||
try:
|
||||
from multiprocessing import cpu_count
|
||||
self.pytest_args = ['-n', str(cpu_count()), '--boxed']
|
||||
self.pytest_args = ['-n', str(cpu_count())]
|
||||
except (ImportError, NotImplementedError):
|
||||
self.pytest_args = ['-n', '1', '--boxed']
|
||||
self.pytest_args = ['-n', '1']
|
||||
|
||||
def finalize_options(self):
|
||||
TestCommand.finalize_options(self)
|
||||
|
|
Loading…
Reference in New Issue