aboutsummaryrefslogtreecommitdiffstats
path: root/ansible/ansible.cfg
blob: eb5dd263db72fe63070df138df4fa97fdacda4b9 (plain)
1
2
3
4
[defaults]
host_key_checking = False
keep_remote_files = True
remote_tmp = /tmp/.ansible/tmp
an> install_command = pip install -U {opts} {packages} deps = -rrequirements.txt -rtest-requirements.txt commands= py.test \ --basetemp={envtmpdir} \ --cov \ {posargs} setenv= HOME = {envtmpdir} PYTHONPATH = {toxinidir} [testenv:pep8] deps = flake8 commands = flake8 {toxinidir} [flake8] # H803 skipped on purpose per list discussion. # E123, E125 skipped as they are invalid PEP-8. show-source = True ignore = E123,E125,H803,E501 builtins = _ exclude = build,dist,doc,legacy,.eggs,.git,.tox,.venv,testapi_venv,venv [pytest] testpaths = opnfv_testapi/tests python_functions = test_*