2015-03-10 23:38:37 +00:00
|
|
|
[tox]
|
2015-10-04 07:51:37 +00:00
|
|
|
envlist = py26,py27,py34
|
2015-03-10 23:38:37 +00:00
|
|
|
|
|
|
|
[testenv]
|
|
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
|
|
whitelist_externals = make
|
2015-05-08 16:34:19 +00:00
|
|
|
commands =
|
2015-08-01 05:50:05 +00:00
|
|
|
python --version
|
2015-10-04 07:57:49 +00:00
|
|
|
py26: python -m compileall -fq -x 'test|samples|contrib/inventory/vagrant.py' lib test contrib
|
|
|
|
py27: python -m compileall -fq -x 'test|samples' lib test contrib
|
|
|
|
py34: python -m compileall -fq -x 'lib/ansible/module_utils|lib/ansible/modules' lib test contrib
|
2015-08-27 20:09:13 +00:00
|
|
|
# Unittests need lots of work to make code python3 compatible
|
2015-10-04 07:57:49 +00:00
|
|
|
py{26,27}: make tests
|