diff options
author | Mark Haines <mjark@negativecurvature.net> | 2015-08-25 16:03:55 +0100 |
---|---|---|
committer | Mark Haines <mjark@negativecurvature.net> | 2015-08-25 16:03:55 +0100 |
commit | 1925a38f952a9823dd770e2e6f78f0b4259ea6cb (patch) | |
tree | 1c894605ea4fb2c3f7035b96605b1e940c451ca9 /tox.ini | |
parent | Merge pull request #243 from matrix-org/markjh/remove_syutil (diff) | |
parent | Add .tox to .gitignore (diff) | |
download | synapse-1925a38f952a9823dd770e2e6f78f0b4259ea6cb.tar.xz |
Merge pull request #247 from matrix-org/markjh/tox
Add a tox.ini config for synapse.
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000000..58cf9613cb --- /dev/null +++ b/tox.ini @@ -0,0 +1,27 @@ +[tox] +envlist = packaging, py27, pep8 + +[testenv] +deps = + coverage + Twisted>=15.1 + mock +setenv = + PYTHONDONTWRITEBYTECODE = no_byte_code +commands = + coverage run --source=./synapse {envbindir}/trial tests + coverage report -m +install_command = + pip install --process-dependency-links --pre {opts} {packages} + +[testenv:packaging] +deps = + check-manifest +commands = + check-manifest + +[testenv:pep8] +basepython = python2.7 +deps = + flake8 +commands = flake8 synapse |