Set the test_suite variable to avoid TypeError in setuptools

This commit is contained in:
Stan Hu 2014-07-04 17:36:00 -07:00
parent 133fcdb748
commit 4da4037176
1 changed files with 4 additions and 1 deletions

View File

@ -84,9 +84,12 @@ tests_require = [
class PyTest(TestCommand):
def initialize_options(self):
TestCommand.initialize_options(self)
self.test_suite = 'tests'
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_suite = True
def run_tests(self):
#import here, cause outside the eggs aren't loaded