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, then, run py27. This patch puts py34
first on the tox.ini list of envs to avoid this problem to happen.

Change-Id: I9457f7e05adb77d4b034ef01e7e51d95fc066013
Closes-bug: #1489059
This commit is contained in:
Ihar Hrachyshka 2016-03-03 14:48:11 +01:00
parent ad122cf23c
commit b4b22a1f37
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
[tox]
envlist = py27,py34,pep8
envlist = py34,py27,pep8
minversion = 1.6
skipsdist = True