diff options
author | Janonymous <janonymous.codevulture@gmail.com> | 2015-12-21 18:19:32 +0530 |
---|---|---|
committer | Janonymous <janonymous.codevulture@gmail.com> | 2015-12-22 18:44:38 +0530 |
commit | 043b209b46a2e4237eb05e6e6a44767b4a8606a6 (patch) | |
tree | 04ae4ddc04e66c8e64997f21a68e8aade50a197d /tox.ini | |
parent | 6f1de9ca0471e3a6e079f89ad03adf39e8ea97d0 (diff) | |
download | pycadf-043b209b46a2e4237eb05e6e6a44767b4a8606a6.tar.gz |
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: I461e4f0d931a9bbc37670dc2cd70d94f86acfb24
Closes-bug: #1489059
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,6 +1,6 @@ [tox] minversion = 1.6 -envlist = py27,py33,py34,pep8 +envlist = py33,py34,py27,pep8 [testenv] deps = -r{toxinidir}/test-requirements.txt |