From e3f6e231bc0d0dbf95b83aa8a53e465601f1ebc1 Mon Sep 17 00:00:00 2001 From: Shuquan Huang Date: Wed, 2 Dec 2015 22:59:07 +0800 Subject: [PATCH] Put py34 first in the env order of tox To solve the problem of "db type could not be determined" on py34 we have to run first the py34 env to, then, run py27. This patch puts py34 first on the tox.ini list of envs to avoid this problem to happen. Change-Id: I2bd65c7af7c87b6c36439e6e4bb6230eca8d33ee Closes-Bug: #1489059 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index a79a57c2..4597404d 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 1.6 -envlist = py27,py34,pep8 +envlist = py34,py27,pep8 skipsdist = True [testenv]