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: I1207b0298b7b9d3cbc993f8ce41b8034f4b46067
Story: #2005924
Task: #34228
This commit is contained in:
Corey Bryant 2019-07-26 15:07:54 -04:00
parent 1d1c732c97
commit af584a7e82
2 changed files with 7 additions and 2 deletions

View File

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

View File

@ -3,7 +3,7 @@
# within individual charm repos.
[tox]
skipsdist = True
envlist = pep8,py3
envlist = pep8,py37
skip_missing_interpreters = True
[bundleenv]
@ -64,6 +64,11 @@ basepython = python3.6
deps = -r{toxinidir}/test-requirements.txt
commands = stestr run {posargs}
[testenv:py37]
basepython = python3.7
deps = -r{toxinidir}/test-requirements.txt
commands = stestr run {posargs}
[testenv:pep8]
basepython = python3
deps = -r{toxinidir}/test-requirements.txt