From 6c1399d078473e8924843c2e30815b66867d7168 Mon Sep 17 00:00:00 2001
From: zhoulinhui <df.some@foxmail.com>
Date: Fri, 18 Sep 2020 00:57:13 +0800
Subject: [PATCH] Update py37 to py38 for running-tests.rst

It should been done in https://review.opendev.org/#/c/752436/ but missing

Change-Id: Iae22e8d8133afecd7e897f82ca58afd6ea33e1c0
---
 doc/source/contributor/running-tests.rst | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/doc/source/contributor/running-tests.rst b/doc/source/contributor/running-tests.rst
index 9c889194fc..a6c513cceb 100644
--- a/doc/source/contributor/running-tests.rst
+++ b/doc/source/contributor/running-tests.rst
@@ -34,11 +34,11 @@ To run the default set of tests:
 
    tox
 
-To run the Python 3.7 tests:
+To run the Python 3.8 tests:
 
 .. code-block:: console
 
-   tox -e py37
+   tox -e py38
 
 To run the style tests:
 
@@ -50,7 +50,7 @@ To run multiple tests separate items by commas:
 
 .. code-block:: console
 
-   tox -e py37,linters
+   tox -e py38,linters
 
 Running a subset of tests
 -------------------------
@@ -64,28 +64,28 @@ directory use:
 
 .. code-block:: console
 
-   tox -e py37 kolla-ansible.tests
+   tox -e py38 kolla-ansible.tests
 
 To run the tests of a specific file
 ``kolla-ansible/tests/test_kolla_docker.py``:
 
 .. code-block:: console
 
-   tox -e py37 test_kolla_docker
+   tox -e py38 test_kolla_docker
 
 To run the tests in the ``ModuleArgsTest`` class in
 the ``kolla-ansible/tests/test_kolla_docker.py`` file:
 
 .. code-block:: console
 
-   tox -e py37 test_kolla_docker.ModuleArgsTest
+   tox -e py38 test_kolla_docker.ModuleArgsTest
 
 To run the ``ModuleArgsTest.test_module_args`` test method in
 the ``kolla-ansible/tests/test_kolla_docker.py`` file:
 
 .. code-block:: console
 
-   tox -e py37 test_kolla_docker.ModuleArgsTest.test_module_args
+   tox -e py38 test_kolla_docker.ModuleArgsTest.test_module_args
 
 Debugging unit tests
 --------------------