diff options
| -rw-r--r-- | tox.ini | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -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 |
