From 45cefd801e6c6a4c7db30e2cb15af99e1c31a4d9 Mon Sep 17 00:00:00 2001 From: Prodesire Date: Thu, 4 Jan 2018 23:28:06 +0800 Subject: [PATCH] remove --box from setup.py --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 9b8677d..3dcfaec 100644 --- a/setup.py +++ b/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)