Skip to content

Commit 9f77ac5

Browse files
committed
setup.py: better fix for test suite with latest setuptool
1 parent 4303ce4 commit 9f77ac5

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

setup.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,9 @@
2121

2222
class PyTest(TestCommand):
2323
user_options = []
24-
def initialize_options(self):
25-
TestCommand.initialize_options(self)
26-
self._argv = []
27-
2824
def finalize_options(self):
2925
TestCommand.finalize_options(self)
30-
self.test_suite = True
26+
self.test_suite = ' '
3127

3228
def run_tests(self):
3329
import pytest

0 commit comments

Comments
 (0)