Don't used pytest-xdist with setup.py test

This commit is contained in:
Jakub Roztocil
2014-04-26 10:59:46 +02:00
parent 5c3d24ec09
commit e3af74da46
2 changed files with 1 additions and 3 deletions

View File

@ -11,7 +11,7 @@ class PyTest(TestCommand):
TestCommand.finalize_options(self)
self.test_suite = True
self.test_args = [
'--doctest-modules', '-n', '8',
'--doctest-modules',
'./httpie', './tests'
]
self.test_suite = True
@ -23,7 +23,6 @@ class PyTest(TestCommand):
tests_require = [
'pytest',
'pytest-xdist',
]