do not run tests in parallel

this makes ci very unreliable, see
https://travis-ci.org/mitmproxy/mitmproxy/jobs/140994186
I don't know of a way to fix the test collection bug.
This commit is contained in:
Maximilian Hils 2016-06-28 23:18:55 -07:00
parent a57ea27bd4
commit 7cae0c268f
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ setenv =
TESTS = test/
HOME = {envtmpdir}
commands =
py.test -n 4 --timeout 60 {posargs} {env:TESTS}
py.test --timeout 60 {posargs} {env:TESTS}
{env:CI_COMMANDS:python -c ""}
[testenv:py35]