Skip to content

Commit 6c76675

Browse files
committed
setup: fix setup.py again
1 parent c107dd3 commit 6c76675

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,12 @@
2222
class PyTest(TestCommand):
2323
user_options = []
2424
def initialize_options(self):
25+
TestCommand.initialize_options(self)
2526
self._argv = []
26-
pass
2727

2828
def finalize_options(self):
29-
pass
29+
TestCommand.finalize_options(self)
30+
self.test_suite = True
3031

3132
def run_tests(self):
3233
import pytest

0 commit comments

Comments
 (0)