From 9f77ac50e7563f7bcc42d8b9ca1dfe59cd9a9eaa Mon Sep 17 00:00:00 2001 From: Ilya Kreymer Date: Thu, 26 Nov 2015 00:59:57 -0800 Subject: [PATCH] setup.py: better fix for test suite with latest setuptool --- setup.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/setup.py b/setup.py index eeded1f2..1ce5dec0 100755 --- a/setup.py +++ b/setup.py @@ -21,13 +21,9 @@ long_description = open('README.rst').read() class PyTest(TestCommand): user_options = [] - def initialize_options(self): - TestCommand.initialize_options(self) - self._argv = [] - def finalize_options(self): TestCommand.finalize_options(self) - self.test_suite = True + self.test_suite = ' ' def run_tests(self): import pytest