summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorMarius Gedminas <marius@gedmin.as>2017-01-09 11:31:01 +0200
committerBrian Coca <bcoca@users.noreply.github.com>2017-01-09 10:13:09 -0500
commit74f07c66be2483eac121736b99bb32667fdd45c9 (patch)
tree1bd3217e8d4db5f75a7eda78400dd8dfa43c3d4e /tox.ini
parent0847a137d3ce655e67ffc5632417c6963eafd94f (diff)
downloadansible-74f07c66be2483eac121736b99bb32667fdd45c9.tar.gz
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.
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 9c7e69e613..59aa4a0cd7 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py26,py27,py3{5,6)
+envlist = py26,py27,py35,py36
[testenv:py35]
deps = -r{toxinidir}/test/utils/tox/requirements-py3.txt