summaryrefslogtreecommitdiffstats
path: root/qa/tox.ini
diff options
context:
space:
mode:
Diffstat (limited to 'qa/tox.ini')
-rw-r--r--qa/tox.ini15
1 files changed, 15 insertions, 0 deletions
diff --git a/qa/tox.ini b/qa/tox.ini
new file mode 100644
index 00000000..5088e120
--- /dev/null
+++ b/qa/tox.ini
@@ -0,0 +1,15 @@
+[tox]
+envlist = flake8-py2, flake8-py3
+skipsdist = True
+
+[testenv:flake8-py2]
+basepython = python2
+deps=
+ flake8
+commands=flake8 --select=F,E9 --exclude=venv,.tox
+
+[testenv:flake8-py3]
+basepython = python3
+deps=
+ flake8
+commands=flake8 --select=F,E9 --exclude=venv,.tox