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

Note that openstack-python35-jobs is retained since this charm is supported
on Xenial.

Change-Id: I80a54de2107c44694b5bd062988b67aae3eda1fe
Story: #2005924
Task: #34228
This commit is contained in:
Corey Bryant 2019-07-12 14:29:41 -04:00 committed by Ryan Beisner
parent ab762132f8
commit b08168a166
No known key found for this signature in database
GPG Key ID: 952BACDC1C1A05FB
2 changed files with 7 additions and 1 deletions

View File

@ -2,3 +2,4 @@
templates:
- python35-charm-jobs
- openstack-cover-jobs
- openstack-python3-train-jobs

View File

@ -3,7 +3,7 @@
# within individual charm repos.
[tox]
skipsdist = True
envlist = pep8,py3
envlist = pep8,py37
[testenv]
setenv = VIRTUAL_ENV={envdir}
@ -37,6 +37,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