From f763f5c70339a091e8c1ac342d8342ff8a986add Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Mon, 14 Sep 2015 14:22:23 -0700 Subject: [PATCH] Change order of tox envs for testr If we run python3 tests before python2 tests the testrepository DB works fine. If we run python2 first the python3 tests cannot read the testrepository DB. The simple fix here is to change the order of the tox env list so that python3 always runs first. Change-Id: I5118c65f07c0f761e211cd2f186ab11d2f8a3393 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 2f74e91..4cf6cd3 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] minversion = 1.6 skipsdist = True -envlist = pep8, py27, pypy, py33, py34 +envlist = py33, py34, pep8, py27, pypy [testenv] setenv VIRTUAL_ENV={envdir}