diff options
| author | Zuul <zuul@review.opendev.org> | 2020-10-15 16:23:27 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2020-10-15 16:23:27 +0000 |
| commit | edf13bc87a055b6f7f5d20e9cb15055fcea202fd (patch) | |
| tree | 9482100f495bbf4a1c46f45a8d3c68d9f474df22 /doc | |
| parent | 0b3e99731a635890a114fd08ecf0f19cf06811e2 (diff) | |
| parent | da9728b15b94e30f814b9420a769adbf64e63e33 (diff) | |
| download | python-cinderclient-edf13bc87a055b6f7f5d20e9cb15055fcea202fd.tar.gz | |
Merge "doc: Update Py37 instead of py27"
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/source/contributor/unit_tests.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/contributor/unit_tests.rst b/doc/source/contributor/unit_tests.rst index c86891f..387ecb0 100644 --- a/doc/source/contributor/unit_tests.rst +++ b/doc/source/contributor/unit_tests.rst @@ -27,13 +27,13 @@ options and what the test run does by default. Running a subset of tests using tox ----------------------------------- One common activity is to just run a single test, you can do this with tox -simply by specifying to just run py27 or py35 tests against a single test:: +simply by specifying to just run py3 tests against a single test:: - tox -epy27 -- -n cinderclient.tests.unit.v2.test_volumes.VolumesTest.test_attach + tox -e py3 -- -n cinderclient.tests.unit.v2.test_volumes.VolumesTest.test_attach Or all tests in the test_volumes.py file:: - tox -epy27 -- -n cinderclient.tests.unit.v2.test_volumes + tox -e py3 -- -n cinderclient.tests.unit.v2.test_volumes For more information on these options and how to run tests, please see the `stestr documentation <https://stestr.readthedocs.io/en/latest/index.html>`_. |
