summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNguyen Hai <nguyentrihai93@gmail.com>2018-03-19 21:10:42 +0900
committerNguyen Hai <nguyentrihai93@gmail.com>2018-04-16 13:35:29 +0000
commit86d9f66642f18c485ad3c3ad63246db9245c4eb9 (patch)
tree9d6c2bdd9d94fefc5fb464bce16d1bfe2daf748e
parent0e6c017c6d1d049d7d26c3c143ca5f7dff8c6233 (diff)
downloadpython-troveclient-86d9f66642f18c485ad3c3ad63246db9245c4eb9.tar.gz
Change testenv from py34 to py35
- The Zuul gate currently only support py35. - In setup.cfg, the project said that it support Programming Language :: Python :: 3.5. Therefor, this patch changes py34 to py35. Change-Id: Iaad9bf41e3c8a8915c06ff039e570a2cc41ca2a1
-rw-r--r--tox.ini6
1 files changed, 3 insertions, 3 deletions
diff --git a/tox.ini b/tox.ini
index 08a9953..54b2ec0 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,7 +1,7 @@
# Python Trove Client
[tox]
-envlist = py34,py27,pypy,pep8
+envlist = py35,py27,pypy,pep8
minversion = 1.6
skipsdist = True
@@ -31,8 +31,8 @@ commands = oslo_debug_helper -t troveclient/tests {posargs}
basepython = python2.7
commands = oslo_debug_helper -t troveclient/tests {posargs}
-[testenv:debug-py34]
-basepython = python3.4
+[testenv:debug-py35]
+basepython = python3.5
commands = oslo_debug_helper -t troveclient/tests {posargs}
[testenv:pep8]