run tests with -p to get complete coverage

This commit is contained in:
meejah 2015-09-15 15:02:11 -06:00
parent e09df6d80a
commit 7cbcbcd3d3
2 changed files with 6 additions and 5 deletions

View File

@ -40,7 +40,7 @@ test_styleguide:
# direct test via pytest (only here because of setuptools test integration)
test_pytest:
python -m pytest -rsx .
python -m pytest -rsx autobahn/
# test via setuptools command
test_setuptools:
@ -62,13 +62,14 @@ test_twisted_coverage:
test_coverage:
-rm .coverage
tox -e py27twisted,py27asyncio,py34asyncio
tox -e py27-twcurrent,py27-trollius,py34-asyncio
coverage combine
coverage html
coverage report --show-missing
# test under asyncio
test_asyncio:
USE_ASYNCIO=1 python -m pytest -rsx
USE_ASYNCIO=1 python -m pytest -rsx autobahn
#WAMP_ROUTER_URL="ws://127.0.0.1:8080/ws" USE_ASYNCIO=1 python -m pytest -rsx
test1:

View File

@ -34,8 +34,8 @@ commands =
sh -c "which python"
python -V
coverage --version
asyncio,trollius: coverage run {envbindir}/py.test autobahn/
twtrunk,twcurrent,tw121,tw132,twcurrent: coverage run {envbindir}/trial autobahn
asyncio,trollius: coverage run --parallel-mode {envbindir}/py.test autobahn/
twtrunk,twcurrent,tw121,tw132,twcurrent: coverage run --parallel-mode {envbindir}/trial autobahn
coverage report
whitelist_externals = sh
setenv =