2015-03-10 19:38:37 -04:00
|
|
|
[tox]
|
2016-08-29 09:12:37 -07:00
|
|
|
envlist = py26,py27,py35
|
2016-03-11 11:25:28 -05:00
|
|
|
|
|
|
|
[testenv:py35]
|
|
|
|
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
|
2016-05-17 19:50:28 +02:00
|
|
|
py35: python -m compileall -fq -x 'test/samples|lib/ansible/modules' lib test contrib
|
2015-10-19 09:43:27 +03:00
|
|
|
make tests
|
2015-11-11 07:50:19 -08:00
|
|
|
|
|
|
|
|
|
|
|
[flake8]
|
|
|
|
# These are things that the devs don't agree make the code more readable
|
|
|
|
# E128 continuation line under-indented for visual indent
|
|
|
|
# E201 whitespace after '['
|
|
|
|
# E202 whitespace before ']'
|
|
|
|
# E203 whitespace before ','
|
|
|
|
# E221 multiple spaces before operator
|
|
|
|
# E225 missing whitespace around operator
|
|
|
|
# E226 missing whitespace around arithmetic operator
|
|
|
|
# E231 missing whitespace after ','
|
|
|
|
# E241 multiple spaces after ','
|
|
|
|
# E251 unexpected spaces around keyword / parameter equals
|
|
|
|
ignore = E128,E201,E202,E203,E221,E225,E226,E231,E241,E251
|
|
|
|
# not all the devs believe in 80 column line length
|
|
|
|
max-line-length = 160
|
|
|
|
# Not going to worry about style in the test suite
|
|
|
|
exclude = tests/*
|