From 8ea0c1e4eba8c889018d09aafe5a24c13e4e95d6 Mon Sep 17 00:00:00 2001 From: Anita Kuno Date: Thu, 7 Jul 2016 19:14:01 -0400 Subject: [PATCH] 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 --- tox.ini | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tox.ini b/tox.ini index 3989b86f..5e116541 100644 --- a/tox.ini +++ b/tox.ini @@ -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}'