1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/tox.ini

32 lines
781 B
INI
Raw Normal View History

[tox]
envlist = {py26,py27}
[testenv]
commands = make tests
deps = -r{toxinidir}/test-requirements.txt
whitelist_externals = make
[testenv:py26]
commands =
python -m compileall -fq -x 'test|samples|contrib/inventory/vagrant.py' .
python2.4 -m compileall -fq -x 'module_utils/(a10|rax|openstack|ec2|gce).py' lib/ansible/module_utils
make tests
deps = -r{toxinidir}/test-requirements.txt
whitelist_externals =
make
python2.4
[testenv:py27]
commands =
python -m compileall -fq -x 'test|samples' .
make tests
deps = -r{toxinidir}/test-requirements.txt
whitelist_externals = make
[testenv:py34]
commands =
python -m compileall -fq -x 'lib/ansible/module_utils' lib
make tests
2015-06-11 18:03:20 +02:00
deps = -r{toxinidir}/test-requirements.txt
whitelist_externals = make