Merge "doc: Update Py37 instead of py27"

This commit is contained in:
Zuul
2020-10-15 16:23:27 +00:00
committed by Gerrit Code Review

View File

@@ -27,13 +27,13 @@ options and what the test run does by default.
Running a subset of tests using tox Running a subset of tests using tox
----------------------------------- -----------------------------------
One common activity is to just run a single test, you can do this with 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:: 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 For more information on these options and how to run tests, please see the
`stestr documentation <https://stestr.readthedocs.io/en/latest/index.html>`_. `stestr documentation <https://stestr.readthedocs.io/en/latest/index.html>`_.