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: I1b68cae8e1e131bab76c20074cf21b1c654f0271
Story: #2005924
Task: #34228
This commit is contained in:
Corey Bryant 2019-07-12 14:29:27 -04:00
parent 575c16cdb2
commit eec03efb47
2 changed files with 8 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,py36
envlist = pep8,py27,py37
skipsdist = True
skip_missing_interpreters = True
@ -21,6 +21,12 @@ deps = -r{toxinidir}/test-requirements.txt
# TODO: Need to write unit tests then remove the following command.
commands = /bin/true
[testenv:py37]
basepython = python3.7
deps = -r{toxinidir}/test-requirements.txt
# TODO: Need to write unit tests then remove the following command.
commands = /bin/true
[testenv:pep8]
basepython = python3
deps = -r{toxinidir}/test-requirements.txt