aboutsummaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini24
1 files changed, 24 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 0000000..0a2b462
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,24 @@
+[tox]
+envlist = qa
+skip_missing_interpreters = True
+
+[testenv]
+usedevelop = True
+deps =
+ flufl.testing
+ nose2
+
+[testenv:qa]
+basepython = python3
+commands =
+ python -m flake8 src
+deps =
+ flake8>3.0
+ flufl.testing
+
+[flake8]
+enable-extensions = U4
+exclude = src/mailman/compat/*.py
+hang-closing = True
+jobs = 1
+max-line-length = 79