aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tox.ini12
1 files changed, 11 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index e16883c..69ec284 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = qa, py35, py36
+envlist = qa, py35, py36, setup35, setup36
skip_missing_interpreters = True
[testenv]
@@ -27,6 +27,16 @@ deps =
git+https://gitlab.com/mailman/mailman.git
git+https://github.com/SecurityInnovation/PGPy
+[testenv:setup35]
+recreate = True
+basepython = python3.5
+commands = pip install -e .
+
+[testenv:setup36]
+recreate = True
+basepython = python3.6
+commands = pip install -e .
+
[flake8]
jobs = 1
max-line-length = 79