Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArthur de Jong <arthur@arthurdejong.org>2017-09-11 21:56:51 +0200
committerArthur de Jong <arthur@arthurdejong.org>2017-09-11 22:05:05 +0200
commitcc3acc2b948b533004310df23080c555a60e4de1 (patch)
tree89f44fbb26831ad42a6e1e9106e560a3326f59f7
parent0c00c8047d82a226a1a8d2f29968218b1768cbf7 (diff)
Simplify Tox configuration
-rw-r--r--tox.ini24
1 files changed, 3 insertions, 21 deletions
diff --git a/tox.ini b/tox.ini
index a8a8204..076ea63 100644
--- a/tox.ini
+++ b/tox.ini
@@ -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