From 4d613bccc16438a940b7054f33ccf4970cd1d6d3 Mon Sep 17 00:00:00 2001 From: Nicolas Pochet Date: Fri, 24 Aug 2018 09:18:08 +0200 Subject: [PATCH] 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` --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 6436461..8e5f4a2 100644 --- a/tox.ini +++ b/tox.ini @@ -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