From abc90a3a300f7f173d3a12db9520c3d0fa89eb07 Mon Sep 17 00:00:00 2001 From: Corey Bryant Date: Fri, 12 Jul 2019 14:29:34 -0400 Subject: [PATCH] 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 python35-charm-jobs is retained since this charm is supported on Xenial. Change-Id: Ie6f119451c282906da12059c14652d08dd5e3f20 Story: #2005924 Task: #34228 --- .zuul.yaml | 1 + setup.cfg | 5 +++++ tox.ini | 5 ++++- 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.zuul.yaml b/.zuul.yaml index dc276615..7332a874 100644 --- a/.zuul.yaml +++ b/.zuul.yaml @@ -1,4 +1,5 @@ - project: templates: - python35-charm-jobs + - openstack-python3-train-jobs - openstack-cover-jobs diff --git a/setup.cfg b/setup.cfg index 17ba6063..e08bf9de 100644 --- a/setup.cfg +++ b/setup.cfg @@ -11,6 +11,11 @@ classifier = Intended Audience :: System Administrators License :: OSI Approved :: Apache Software License Operating System :: POSIX :: Linux + Programming Language :: Python + Programming Language :: Python :: 3 + Programming Language :: Python :: 3.5 + Programming Language :: Python :: 3.6 + Programming Language :: Python :: 3.7 [nosetests] verbosity=1 diff --git a/tox.ini b/tox.ini index 5963c9bb..6c6f9ab2 100644 --- a/tox.ini +++ b/tox.ini @@ -2,7 +2,7 @@ # This file is managed centrally by release-tools and should not be modified # within individual charm repos. [tox] -envlist = pep8,py3 +envlist = pep8,py37 skipsdist = True [testenv] @@ -24,6 +24,9 @@ basepython = python3.5 [testenv:py36] basepython = python3.6 +[testenv:py37] +basepython = python3.7 + [testenv:py3] basepython = python3