summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorwu.chunyang <wuchunyang@yovole.com>2022-04-28 21:50:45 +0800
committerwu.chunyang <wuchunyang@yovole.com>2022-04-28 21:50:45 +0800
commit2725612128a9159dcf30692c779950427d474180 (patch)
treeb61403001e7f5976b018888d01e5c9bf420f5f18 /doc
parent8182e3d93aec52c9bd551b0ccb1539aae2abd0c4 (diff)
downloadtrove-2725612128a9159dcf30692c779950427d474180.tar.gz
Add python3.9 support
Add python3.9 support and set the default test env from py38 to py39 Change-Id: Ie1a4790762b80b8f60eda86b879b73b8a6005eba
Diffstat (limited to 'doc')
-rw-r--r--doc/source/contributor/testing.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/contributor/testing.rst b/doc/source/contributor/testing.rst
index 8cedfbbf..72d5839b 100644
--- a/doc/source/contributor/testing.rst
+++ b/doc/source/contributor/testing.rst
@@ -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
----------