From e3af74da46412f1f7775ddf14b3c0c4c7096cf44 Mon Sep 17 00:00:00 2001 From: Jakub Roztocil Date: Sat, 26 Apr 2014 10:59:46 +0200 Subject: [PATCH] Don't used pytest-xdist with setup.py test --- appveyor.yml | 1 - setup.py | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 40c412d9..cf4f27b5 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -5,7 +5,6 @@ branches: install: - 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\Scripts\pip.exe install -e . build: off test_script: - C:\Python27\Scripts\pip.exe --version diff --git a/setup.py b/setup.py index a0bd7742..814cf607 100644 --- a/setup.py +++ b/setup.py @@ -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', ]