2015-03-10 19:38:37 -04:00
|
|
|
[tox]
|
2017-01-09 11:31:01 +02:00
|
|
|
envlist = py26,py27,py35,py36
|
2016-03-11 11:25:28 -05:00
|
|
|
|
|
|
|
[testenv:py35]
|
|
|
|
deps = -r{toxinidir}/test/utils/tox/requirements-py3.txt
|
|
|
|
|
2017-01-05 22:06:58 +02:00
|
|
|
[testenv:py36]
|
|
|
|
deps = -r{toxinidir}/test/utils/tox/requirements-py3.txt
|
|
|
|
|
2015-03-10 19:38:37 -04:00
|
|
|
[testenv]
|
2016-03-11 11:25:28 -05:00
|
|
|
deps = -r{toxinidir}/test/utils/tox/requirements.txt
|
2015-03-10 19:38:37 -04:00
|
|
|
whitelist_externals = make
|
2015-05-08 11:34:19 -05:00
|
|
|
commands =
|
2015-07-31 22:50:05 -07:00
|
|
|
python --version
|
2016-05-11 12:03:23 -07: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
|
2017-01-05 22:06:58 +02:00
|
|
|
py3{5,6}: python -m compileall -fq -x 'test/samples|lib/ansible/modules' lib test contrib
|
2015-10-19 09:43:27 +03:00
|
|
|
make tests
|
2017-01-18 21:48:11 +00:00
|
|
|
passenv =
|
|
|
|
# Pass HOME to the test environment to avoid the missing HOME env
|
|
|
|
# variable error. See issue: #20424
|
|
|
|
HOME
|
2017-02-21 00:24:39 +01:00
|
|
|
TEST_FLAGS
|
2015-11-11 07:50:19 -08:00
|
|
|
|
|
|
|
|
|
|
|
[flake8]
|
|
|
|
# These are things that the devs don't agree make the code more readable
|
2017-02-03 14:49:33 +10:00
|
|
|
# E402 module level import not at top of file
|
2017-04-05 11:22:07 -04:00
|
|
|
ignore = E402
|
2015-11-11 07:50:19 -08:00
|
|
|
# not all the devs believe in 80 column line length
|
|
|
|
max-line-length = 160
|