summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorDoug Hellmann <doug@doughellmann.com>2016-02-10 15:34:14 -0500
committerDoug Hellmann <doug@doughellmann.com>2016-02-10 15:34:14 -0500
commit2ab53dfdae2417e508df6b36b8e7163850384146 (patch)
tree999f1045c7221942f4abf8fa579cf26da0df1f81 /tox.ini
parent1720b7386683363c430c0e7916bdee4e86f047c6 (diff)
downloadosprofiler-2ab53dfdae2417e508df6b36b8e7163850384146.tar.gz
run py34 tests before py27 to work around testr bug
testr uses anydbm to create a database, but python 3 dropped support for the database format that is the default in python 2. The default for python 3 is available under python 2, so if we run the python 3 tests before the python 2 tests everything works fine. Change the order in the default environment list so that if someone checks out the repo and runs 'tox' all of the tests work. Change-Id: I44b23add5acc297ca00d2d3c7747f0cfff85cc2f Signed-off-by: Doug Hellmann <doug@doughellmann.com>
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index a86491d..fbcd0e2 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,7 +1,7 @@
[tox]
minversion = 1.6
skipsdist = True
-envlist = py27,py34,pep8
+envlist = py34,py27,pep8
[testenv]
setenv = VIRTUAL_ENV={envdir}