From 80d7aed8cf3d93b8b242e7d7619dd33d3ebc99f5 Mon Sep 17 00:00:00 2001 From: Sean McGinnis Date: Mon, 27 Jul 2020 10:15:27 -0500 Subject: [PATCH] Update tox.ini to latest settings This updates the minversion used in tox.ini to be a more recent version to match other openstack project's settings. It also drops the out of date defaults and replaces them with venv since there are not actually any unit test environments to run. The only useful environment is venv, so the default target will now just create the venv as a shortcut. Change-Id: I416ed1cc997cd49029cf8fec31b30df5f4179ff2 Signed-off-by: Sean McGinnis --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 6a1b29f..948c3cd 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] -minversion = 1.6 +minversion = 3.1.0 skipsdist = True -envlist = py27,py34 +envlist = venv [testenv:venv] basepython = python3