Removed pytest-xdist

The test suite is much less IO-bound now with the local httpbin
instance (via pytest-httpbin). Therefore, paralelization is not
as helpful.
This commit is contained in:
Jakub Roztocil 2014-09-08 07:44:25 +02:00
parent b0effe07d9
commit 6aa711c69f
3 changed files with 3 additions and 5 deletions

View File

@ -22,8 +22,8 @@ init: uninstall-httpie
@echo @echo
test: init test: init
@echo $(TAG)Running tests in on current Python in parallel and with coverage $(END) @echo $(TAG)Running tests in on current Python with coverage $(END)
py.test --cov ./httpie --cov ./tests -n 8 --doctest-modules --verbose ./httpie ./tests py.test --cov ./httpie --cov ./tests --doctest-modules --verbose ./httpie ./tests
@echo @echo
test-tox: init test-tox: init

View File

@ -1,6 +1,5 @@
tox tox
pytest pytest
pytest-xdist
pytest-cov pytest-cov
pytest-httpbin pytest-httpbin
docutils docutils

View File

@ -12,8 +12,7 @@ envlist = py26, py27, py34, pypy
[testenv] [testenv]
deps = deps =
pytest pytest
pytest-xdist
pytest-httpbin pytest-httpbin
commands = commands =
py.test -n 8 --doctest-modules --basetemp={envtmpdir} {posargs:./tests ./httpie} py.test --verbose --doctest-modules --basetemp={envtmpdir} {posargs:./tests ./httpie}