summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tox.ini23
1 files changed, 23 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 0000000..6a671ea
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,23 @@
+[tox]
+skipsdist=True
+envlist = py27,py3,style
+setupdir = imagescanner/
+
+[testenv]
+distribute = False
+commands =
+ {envpython} --version
+ pytest --version
+ pytest --cov=imagescanner
+deps = flake8
+ pytest-cov
+ pytest
+
+[testenv:style]
+commands = flake8
+
+[testenv:py27]
+basepython=python2.7
+
+[testenv:py3]
+basepython=python3.6