Merge "Add Python 3 Train unit tests"

This commit is contained in:
Zuul 2019-08-13 18:21:49 +00:00 committed by Gerrit Code Review
commit f4504d4398
2 changed files with 7 additions and 2 deletions

View File

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

View File

@ -3,7 +3,7 @@
# within individual charm repos.
[tox]
skipsdist = True
envlist = pep8,py36
envlist = pep8,py37
skip_missing_interpreters = True
[testenv]
@ -42,6 +42,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