2015-03-10 23:38:37 +00:00
|
|
|
[tox]
|
2017-01-09 09:31:01 +00:00
|
|
|
envlist = py26,py27,py35,py36
|
2016-03-11 16:25:28 +00:00
|
|
|
|
2015-03-10 23:38:37 +00:00
|
|
|
[testenv]
|
2017-06-30 21:53:32 +00:00
|
|
|
deps = -c{toxinidir}/test/runner/requirements/constraints.txt
|
|
|
|
-r{toxinidir}/test/runner/requirements/ansible-test.txt
|
|
|
|
-r{toxinidir}/test/runner/requirements/sanity.txt
|
|
|
|
-r{toxinidir}/test/runner/requirements/units.txt
|
2015-05-08 16:34:19 +00:00
|
|
|
commands =
|
2015-08-01 05:50:05 +00:00
|
|
|
python --version
|
2017-06-30 21:53:32 +00:00
|
|
|
# The recommended method of running tests with tox is to execute
|
|
|
|
# ansible-test directly and use the --tox and --python options.
|
|
|
|
# The commands below are provided as a convenience for those who
|
|
|
|
# prefer to run tox directly instead of through ansible-test.
|
|
|
|
{toxinidir}/test/runner/ansible-test sanity --python default -v
|
|
|
|
{toxinidir}/test/runner/ansible-test units --python default -v
|
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
|
2015-11-11 15:50:19 +00:00
|
|
|
|
2017-12-05 21:36:24 +00:00
|
|
|
[pytest]
|
|
|
|
xfail_strict = true
|
2015-11-11 15:50:19 +00:00
|
|
|
|
|
|
|
[flake8]
|
|
|
|
# These are things that the devs don't agree make the code more readable
|
2017-02-03 04:49:33 +00:00
|
|
|
# E402 module level import not at top of file
|
2017-04-05 15:22:07 +00:00
|
|
|
ignore = E402
|
2015-11-11 15:50:19 +00:00
|
|
|
# not all the devs believe in 80 column line length
|
|
|
|
max-line-length = 160
|