Browse code

Fix envlist in tox.ini

tox doesn't actually expand {brace,expressions} in envlist, so if you ran `tox` without specifying a `-e` parameter, tox would try to run `py26`, `py27`, `py3{5` and `6)`, defaulting to python2.7 for those non-standard environment names.

Marius Gedminas authored on 2017/01/09 18:31:01
Showing 1 changed files
... ...
@@ -1,5 +1,5 @@
1 1
 [tox]
2
-envlist = py26,py27,py3{5,6)
2
+envlist = py26,py27,py35,py36
3 3
 
4 4
 [testenv:py35]
5 5
 deps = -r{toxinidir}/test/utils/tox/requirements-py3.txt