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

@ -5,7 +5,6 @@ branches:
install: install:
- ps: (new-object net.webclient).DownloadFile('https://raw.github.com/pypa/pip/master/contrib/get-pip.py', 'C:\get-pip.py') - ps: (new-object net.webclient).DownloadFile('https://raw.github.com/pypa/pip/master/contrib/get-pip.py', 'C:\get-pip.py')
- C:\Python27\python.exe c:\get-pip.py - C:\Python27\python.exe c:\get-pip.py
- C:\Python27\Scripts\pip.exe install -e .
build: off build: off
test_script: test_script:
- C:\Python27\Scripts\pip.exe --version - C:\Python27\Scripts\pip.exe --version

View File

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