From fb3b41c02ae8b12d02b023be40028a3ffb3749ac Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Thu, 27 Apr 2017 11:39:40 -0400 Subject: [PATCH] make default python for venv python 3 We use the venv tox target as a generic environment for running commands defined in this repo. Let's redefine the environment to use python 3 by default. Change-Id: I0cf5f50b7d36f5ebb61408eefeccb702432464be Signed-off-by: Doug Hellmann --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index 3eeb3b4..eb9c8a3 100644 --- a/tox.ini +++ b/tox.ini @@ -32,6 +32,7 @@ commands = bash -c "find {toxinidir} \ -print0 | xargs -0 bashate -v" [testenv:venv] +basepython = python3 commands = {posargs} [testenv:cover]