diff options
author | Toshio Kuratomi <toshio@fedoraproject.org> | 2015-08-27 13:09:13 -0700 |
---|---|---|
committer | Toshio Kuratomi <toshio@fedoraproject.org> | 2015-08-27 13:20:52 -0700 |
commit | 1eee5ec6ff80278d95af9f9e9218fae033d8b034 (patch) | |
tree | 6242b68ab93044f46f3daefdfd43ed83e91aa17f /tox.ini | |
parent | 69071666673a1ea6e6c90a8e4edfc81b351ba133 (diff) | |
download | ansible-1eee5ec6ff80278d95af9f9e9218fae033d8b034.tar.gz |
Enable py34 test in travis so we don't regress recent fixespy3-test
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1,5 +1,5 @@ [tox] -envlist = {py26,py27} +envlist = {py26,py27,py34} [testenv] commands = make tests @@ -26,7 +26,10 @@ whitelist_externals = make [testenv:py34] commands = python --version + # scripts in contrib still need to be ported to python3-compatible syntax + #python -m compileall -fq -x 'lib/ansible/module_utils|lib/ansible/modules' lib test contrib python -m compileall -fq -x 'lib/ansible/module_utils|lib/ansible/modules' lib test - make tests + # Unittests need lots of work to make code python3 compatible + #make tests deps = -r{toxinidir}/test-requirements.txt whitelist_externals = make |