summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorMarius Gedminas <marius@gedmin.as>2015-08-28 09:18:13 +0300
committerMarius Gedminas <marius@gedmin.as>2015-08-28 09:18:13 +0300
commit3f9879aedbdb71479aac193edb89d7a4b996b1a8 (patch)
treee0877ffda0e039528bdcd7751dd882e445477650 /tox.ini
parentaa5f96d28dc7eeeac1d2cd8448f0a48ca4aa55e9 (diff)
downloadansible-3f9879aedbdb71479aac193edb89d7a4b996b1a8.tar.gz
Use print() as function under contrib/
This fixes the remaining Python 3 syntax errors, so re-enable compileall for contrib/ again.
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini4
1 files changed, 1 insertions, 3 deletions
diff --git a/tox.ini b/tox.ini
index 7eee0619f6..02a3d71f2b 100644
--- a/tox.ini
+++ b/tox.ini
@@ -26,9 +26,7 @@ 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
+ python -m compileall -fq -x 'lib/ansible/module_utils|lib/ansible/modules' lib test contrib
# Unittests need lots of work to make code python3 compatible
#make tests
deps = -r{toxinidir}/test-requirements.txt