Add a py35 textenv to tox.ini

Currently the tox.ini file has a section for py34 tests. In order
to get the python35-db job to build we need to create a py35
textenv section in the tox.ini file.

Change-Id: I5811cc11342b67358aa010c96affe7a6b3544b02
This commit is contained in:
Anita Kuno 2016-07-07 19:14:01 -04:00
parent ebbcce5904
commit 8ea0c1e4eb

View File

@ -29,6 +29,10 @@ commands =
deps = -r{toxinidir}/requirements-py3.txt
-r{toxinidir}/test-requirements.txt
[testenv:py35]
deps = -r{toxinidir}/requirements-py3.txt
-r{toxinidir}/test-requirements.txt
[testenv:cover]
commands = python setup.py testr --coverage --testr-args='{posargs}'