Add Python 3 Train unit tests

This is a mechanically generated patch to ensure unit testing is in place
for all of the Tested Runtimes for Train.

See the Train python3-updates goal document for details:
https://governance.openstack.org/tc/goals/train/python3-updates.html

Change-Id: Ic296327e11a22478f55b39a8211fe997216015bf
Story: #2005924
Task: #34228
This commit is contained in:
Corey Bryant 2019-07-12 14:29:43 -04:00
parent 032ae3dbe2
commit 6d0082a5a6
2 changed files with 6 additions and 2 deletions

View File

@ -1,4 +1,4 @@
- project:
templates:
- python-charm-jobs
- openstack-python36-jobs
- openstack-python3-train-jobs

View File

@ -1,5 +1,5 @@
[tox]
envlist = pep8,py27,py3
envlist = pep8,py27,py37
skipsdist = True
skip_missing_interpreters = True
@ -29,6 +29,10 @@ deps = -r{toxinidir}/test-requirements.txt
basepython = python3.6
deps = -r{toxinidir}/test-requirements.txt
[testenv:py37]
basepython = python3.7
deps = -r{toxinidir}/test-requirements.txt
[testenv:pep8]
basepython = python3
deps = -r{toxinidir}/test-requirements.txt