Merge pull request #560 from matrix-org/daniel/tox

Remove pyc files before running tests
pull/567/head
Daniel Wagner-Hall 2016-02-09 13:44:08 +00:00
commit b58a8b1ee0
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ deps =
setenv =
PYTHONDONTWRITEBYTECODE = no_byte_code
commands =
/bin/bash -c "coverage run {env:COVERAGE_OPTS:} --source={toxinidir}/synapse \
/bin/bash -c "find {toxinidir} -name '*.pyc' -delete ; coverage run {env:COVERAGE_OPTS:} --source={toxinidir}/synapse \
{envbindir}/trial {env:TRIAL_FLAGS:} {posargs:tests} {env:TOXSUFFIX:}"
{env:DUMP_COVERAGE_COMMAND:coverage report -m}