From 9e41cb329dd546670bcc8fdd2cc8ebb28bd9f779 Mon Sep 17 00:00:00 2001 From: Janonymous Date: Mon, 21 Dec 2015 18:32:06 +0530 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 py34 env before py27. This patch puts py34 first on the tox.ini's list of envs to avoid this problem to happen. Change-Id: Ife0c57c0d92d41018862aad744ef9af65ef87b21 Closes-bug: #1489059 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index ca7bd74..406b0b7 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py26,py27,py33,py34,pypy,pep8 +envlist = py33,py34,py26,py27,pypy,pep8 minversion = 1.6 [testenv]