2015-03-11 00:38:37 +01:00
|
|
|
[tox]
|
2015-05-08 18:34:19 +02:00
|
|
|
envlist = {py26,py27}
|
2015-03-11 00:38:37 +01:00
|
|
|
|
|
|
|
[testenv]
|
2015-04-15 00:46:25 +02:00
|
|
|
commands = make tests
|
2015-03-11 00:38:37 +01:00
|
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
|
|
whitelist_externals = make
|
2015-04-14 21:07:31 +02:00
|
|
|
|
2015-05-08 18:34:19 +02:00
|
|
|
[testenv:py26]
|
|
|
|
commands =
|
2015-08-01 07:50:05 +02:00
|
|
|
python --version
|
2015-08-26 07:31:43 +02:00
|
|
|
python -m compileall -fq -x 'test|samples|contrib/inventory/vagrant.py|.tox' .
|
2015-05-08 18:34:19 +02:00
|
|
|
make tests
|
|
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
|
|
whitelist_externals =
|
|
|
|
make
|
2015-04-14 21:07:31 +02:00
|
|
|
|
2015-05-08 18:34:19 +02:00
|
|
|
[testenv:py27]
|
|
|
|
commands =
|
2015-08-01 07:50:05 +02:00
|
|
|
python --version
|
2015-08-26 07:31:43 +02:00
|
|
|
python -m compileall -fq -x 'test|samples|.tox' .
|
2015-05-08 18:34:19 +02:00
|
|
|
make tests
|
|
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
|
|
whitelist_externals = make
|
2015-04-14 21:07:31 +02:00
|
|
|
|
2015-05-08 18:34:19 +02:00
|
|
|
[testenv:py34]
|
|
|
|
commands =
|
2015-08-01 07:50:05 +02:00
|
|
|
python --version
|
2015-08-26 07:31:43 +02:00
|
|
|
python -m compileall -fq -x 'lib/ansible/module_utils|.tox' lib
|
2015-05-08 18:34:19 +02:00
|
|
|
make tests
|
2015-06-11 18:03:20 +02:00
|
|
|
deps = -r{toxinidir}/test-requirements.txt
|
2015-05-08 18:34:19 +02:00
|
|
|
whitelist_externals = make
|