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
This commit is contained in:
Clark Boylan 2015-09-14 14:22:23 -07:00
parent 8923e660a9
commit f763f5c703
1 changed files with 1 additions and 1 deletions

View File

@ -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}