Merge "Add python3.9 support"

This commit is contained in:
Zuul 2022-04-29 11:30:38 +00:00 committed by Gerrit Code Review
commit 4741b57c09
3 changed files with 5 additions and 4 deletions

View File

@ -101,19 +101,19 @@ Run all the unit tests in one command:
.. code-block:: console
tox -e py38
tox -e py39
Run all the tests of a specific test class:
.. code-block:: console
tox -e py38 -- trove.tests.unittests.instance.test_service.TestInstanceController
tox -e py39 -- trove.tests.unittests.instance.test_service.TestInstanceController
Run a single test case:
.. code-block:: console
tox -e py38 -- trove.tests.unittests.instance.test_service.TestInstanceController.test_create_multiple_versions
tox -e py39 -- trove.tests.unittests.instance.test_service.TestInstanceController.test_create_multiple_versions
References
----------

View File

@ -17,6 +17,7 @@ classifier =
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[files]
data_files =

View File

@ -1,5 +1,5 @@
[tox]
envlist = py38,pep8,cover,api-ref,releasenotes,bandit,fakemodetests
envlist = py39,pep8,cover,api-ref,releasenotes,bandit,fakemodetests
minversion = 3.18.0
skipsdist = True