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
This commit is contained in:
Janonymous 2015-12-21 18:32:06 +05:30 committed by Reedip
parent 035134dc5f
commit 9e41cb329d
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
[tox]
envlist = py26,py27,py33,py34,pypy,pep8
envlist = py33,py34,py26,py27,pypy,pep8
minversion = 1.6
[testenv]