summary refs log tree commit diff
path: root/tox.ini
diff options
context:
space:
mode:
authorMark Haines <mjark@negativecurvature.net>2015-08-25 16:03:55 +0100
committerMark Haines <mjark@negativecurvature.net>2015-08-25 16:03:55 +0100
commit1925a38f952a9823dd770e2e6f78f0b4259ea6cb (patch)
tree1c894605ea4fb2c3f7035b96605b1e940c451ca9 /tox.ini
parentMerge pull request #243 from matrix-org/markjh/remove_syutil (diff)
parentAdd .tox to .gitignore (diff)
downloadsynapse-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.ini27
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