Skip to content

Commit 6aa711c

Browse files
committed
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.
1 parent b0effe0 commit 6aa711c

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ init: uninstall-httpie
2222
@echo
2323

2424
test: init
25-
@echo $(TAG)Running tests in on current Python in parallel and with coverage $(END)
26-
py.test --cov ./httpie --cov ./tests -n 8 --doctest-modules --verbose ./httpie ./tests
25+
@echo $(TAG)Running tests in on current Python with coverage $(END)
26+
py.test --cov ./httpie --cov ./tests --doctest-modules --verbose ./httpie ./tests
2727
@echo
2828

2929
test-tox: init

requirements-dev.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
tox
22
pytest
3-
pytest-xdist
43
pytest-cov
54
pytest-httpbin
65
docutils

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ envlist = py26, py27, py34, pypy
1212
[testenv]
1313
deps =
1414
pytest
15-
pytest-xdist
1615
pytest-httpbin
1716

1817
commands =
19-
py.test -n 8 --doctest-modules --basetemp={envtmpdir} {posargs:./tests ./httpie}
18+
py.test --verbose --doctest-modules --basetemp={envtmpdir} {posargs:./tests ./httpie}

0 commit comments

Comments
 (0)