cc4ec215d3
This patch makes the playbooks ship directly with the Python files which means no need to run inside working directory. Change-Id: I3f2d3c95a8443383b47d806e293c9bb75d9fcec7
19 lines
264 B
INI
19 lines
264 B
INI
#[tox]
|
|
#skipsdist = True
|
|
|
|
[testenv]
|
|
basepython = python3
|
|
#usedevelop = True
|
|
passenv = SSH_AUTH_SOCK
|
|
deps =
|
|
-r{toxinidir}/requirements.txt
|
|
|
|
[testenv:linters]
|
|
usedevelop = True
|
|
deps =
|
|
flake8
|
|
commands = flake8
|
|
|
|
[testenv:venv]
|
|
skipsdist = True
|
|
commands = {posargs} |