diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2017-09-11 21:56:51 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2017-09-11 22:05:05 +0200 |
commit | cc3acc2b948b533004310df23080c555a60e4de1 (patch) | |
tree | 89f44fbb26831ad42a6e1e9106e560a3326f59f7 | |
parent | 0c00c8047d82a226a1a8d2f29968218b1768cbf7 (diff) |
Simplify Tox configuration
-rw-r--r-- | tox.ini | 24 |
1 files changed, 3 insertions, 21 deletions
@@ -1,31 +1,13 @@ [tox] -envlist = {py27,py34,py35,py36,py27-lxml,py34-lxml,py35-lxml,py36-lxml} +envlist = py{27,34,35,36}{,-lxml} +skip_missing_interpreters = True [testenv] deps = nose coverage pycrypto python-dateutil + lxml: lxml commands = nosetests setenv= PYTHONWARNINGS=all - -[testenv:py27-lxml] -basepython = python2.7 -deps = {[testenv]deps} - lxml - -[testenv:py34-lxml] -basepython = python3.4 -deps = {[testenv]deps} - lxml - -[testenv:py35-lxml] -basepython = python3.5 -deps = {[testenv]deps} - lxml - -[testenv:py36-lxml] -basepython = python3.6 -deps = {[testenv]deps} - lxml |