1
0
mirror of https://github.com/httpie/cli.git synced 2024-11-24 08:22:22 +02:00

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
test: init
@echo $(TAG)Running tests in on current Python in parallel and with coverage $(END)
py.test --cov ./httpie --cov ./tests -n 8 --doctest-modules --verbose ./httpie ./tests
@echo $(TAG)Running tests in on current Python with coverage $(END)
py.test --cov ./httpie --cov ./tests --doctest-modules --verbose ./httpie ./tests
@echo
test-tox: init

View File

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

View File

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