diff options
author | Erik Johnston <erik@matrix.org> | 2015-11-17 15:45:43 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-11-17 15:45:43 +0000 |
commit | d3861b44424aa6f03cc65719bb1527330157abea (patch) | |
tree | 4377eb0dc5e221862489bdcc802e50e2f1f41cb1 /tox.ini | |
parent | Merge branch 'hotfixes-v0.10.0-r2' of github.com:matrix-org/synapse (diff) | |
parent | Slightly more aggressive retry timers at HTTP level (diff) | |
download | synapse-d3861b44424aa6f03cc65719bb1527330157abea.tar.xz |
Merge branch 'release-v0.11.0' of github.com:matrix-org/synapse v0.11.0
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000000..95424765c3 --- /dev/null +++ b/tox.ini @@ -0,0 +1,28 @@ +[tox] +envlist = packaging, py27, pep8 + +[testenv] +deps = + coverage + Twisted>=15.1 + mock + python-subunit + junitxml +setenv = + PYTHONDONTWRITEBYTECODE = no_byte_code +commands = + /bin/bash -c "coverage run --source=synapse {envbindir}/trial {env:TRIAL_FLAGS:} {posargs:tests} {env:TOXSUFFIX:}" + {env:DUMP_COVERAGE_COMMAND:coverage report -m} + +[testenv:packaging] +deps = + check-manifest +commands = + check-manifest + +[testenv:pep8] +skip_install = True +basepython = python2.7 +deps = + flake8 +commands = /bin/bash -c "flake8 synapse {env:PEP8SUFFIX:}" |