Modify the venv tox environment

* Make it target python3
* Install the necessary dependencies
* Use /bin/true to not raise error when using it via `tox -e venv`
This commit is contained in:
Nicolas Pochet
2018-08-24 09:18:08 +02:00
parent 9eda316756
commit 4d613bccc1
+3 -1
View File
@@ -19,7 +19,9 @@ deps = -r{toxinidir}/requirements.txt
commands = flake8 {posargs} zaza unit_tests
[testenv:venv]
commands = {posargs}
basepython = python3
deps = -r{toxinidir}/requirements.txt
commands = /bin/true
[flake8]
ignore = E402,E226