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.
This commit is contained in:
parent
0847a137d3
commit
74f07c66be
1 changed files with 1 additions and 1 deletions
2
tox.ini
2
tox.ini
|
@ -1,5 +1,5 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist = py26,py27,py3{5,6)
|
envlist = py26,py27,py35,py36
|
||||||
|
|
||||||
[testenv:py35]
|
[testenv:py35]
|
||||||
deps = -r{toxinidir}/test/utils/tox/requirements-py3.txt
|
deps = -r{toxinidir}/test/utils/tox/requirements-py3.txt
|
||||||
|
|
Loading…
Reference in a new issue