2015-03-10 19:38:37 -04:00
|
|
|
[tox]
|
2015-08-27 13:09:13 -07:00
|
|
|
envlist = {py26,py27,py34}
|
2015-03-10 19:38:37 -04:00
|
|
|
|
|
|
|
[testenv]
|
2015-04-14 15:46:25 -07:00
|
|
|
commands = make tests
|
2015-03-10 19:38:37 -04:00
|
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
|
|
whitelist_externals = make
|
2015-04-14 15:07:31 -04:00
|
|
|
|
2015-05-08 11:34:19 -05:00
|
|
|
[testenv:py26]
|
|
|
|
commands =
|
2015-07-31 22:50:05 -07:00
|
|
|
python --version
|
2015-08-27 10:41:46 -07:00
|
|
|
python -m compileall -fq -x 'test|samples|contrib/inventory/vagrant.py' lib test contrib
|
2015-05-08 11:34:19 -05:00
|
|
|
make tests
|
|
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
|
|
whitelist_externals =
|
|
|
|
make
|
2015-04-14 15:07:31 -04:00
|
|
|
|
2015-05-08 11:34:19 -05:00
|
|
|
[testenv:py27]
|
|
|
|
commands =
|
2015-07-31 22:50:05 -07:00
|
|
|
python --version
|
2015-08-27 10:41:46 -07:00
|
|
|
python -m compileall -fq -x 'test|samples' lib test contrib
|
2015-05-08 11:34:19 -05:00
|
|
|
make tests
|
|
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
|
|
whitelist_externals = make
|
2015-04-14 15:07:31 -04:00
|
|
|
|
2015-05-08 11:34:19 -05:00
|
|
|
[testenv:py34]
|
|
|
|
commands =
|
2015-07-31 22:50:05 -07:00
|
|
|
python --version
|
2015-08-28 09:18:13 +03:00
|
|
|
python -m compileall -fq -x 'lib/ansible/module_utils|lib/ansible/modules' lib test contrib
|
2015-08-27 13:09:13 -07:00
|
|
|
# Unittests need lots of work to make code python3 compatible
|
|
|
|
#make tests
|
2015-06-11 09:03:20 -07:00
|
|
|
deps = -r{toxinidir}/test-requirements.txt
|
2015-05-08 11:34:19 -05:00
|
|
|
whitelist_externals = make
|