tox.ini
3d67e9e0
 [tox]
f1f3bc9e
 envlist = py26,py27,py34,py35
3d67e9e0
 
286d91d7
 [testenv:py34]
 deps = -r{toxinidir}/test/utils/tox/requirements-py3.txt
 
 [testenv:py35]
 deps = -r{toxinidir}/test/utils/tox/requirements-py3.txt
 
3d67e9e0
 [testenv]
286d91d7
 deps = -r{toxinidir}/test/utils/tox/requirements.txt
3d67e9e0
 whitelist_externals = make
a0fc8bb0
 commands =
87cb7f81
     python --version
e9b114a3
     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
63add130
     py34: python -m compileall -fq -x 'lib/ansible/module_utils|lib/ansible/modules' lib test contrib
     py35: python -m compileall -fq -x 'lib/ansible/module_utils|lib/ansible/modules' lib test contrib
43fe74f0
     make tests
ab44cf2a
 
 
 [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/*