summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tox.ini9
1 files changed, 8 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index b1166bdc1..500decfef 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = {py34,py35}{,-coverage,-diffcov}{,-pg}
+envlist = {py34,py35}{,-coverage,-diffcov}{,-pg},qa
recreate = True
skip_missing_interpreters = True
@@ -26,6 +26,13 @@ setenv =
coverage: COVERAGE_OPTIONS="-p"
coverage: COVERAGE_FILE={toxinidir}/.coverage
+[testenv:qa]
+basepython = python3.5
+commands =
+ python -m flake8 src
+deps =
+ flake8
+
[coverage]
rcfile = {toxinidir}/coverage.ini
rc = --rcfile={[coverage]rcfile}