ansible/tox.ini
2015-10-04 10:51:37 +03:00

27 lines
643 B
INI

[tox]
envlist = py26,py27,py34
[testenv]
commands = make tests
deps = -r{toxinidir}/test-requirements.txt
whitelist_externals = make
[testenv:py26]
commands =
python --version
python -m compileall -fq -x 'test|samples|contrib/inventory/vagrant.py' lib test contrib
make tests
[testenv:py27]
commands =
python --version
python -m compileall -fq -x 'test|samples' lib test contrib
make tests
[testenv:py34]
commands =
python --version
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