@@ -99,11 +99,11 @@ You can decide to run the complete test suite or only part of it:
9999 $ tox --skip-missing-interpreters
100100
101101 It is possible to use one or more specific Python versions. Use the ``-e``
102- option and one or more abbreviations (``py36 `` for Python 3.6, ``py37`` for
103- Python 3.7 etc.)::
102+ option and one or more abbreviations (``py37 `` for Python 3.7,
103+ ``py38`` for Python 3.8 etc.)::
104104
105- $ tox -e py36
106- $ tox -e py36, py37
105+ $ tox -e py37
106+ $ tox -e py37,py38
107107
108108 To get a complete list and a short description, run::
109109
@@ -116,24 +116,24 @@ You can decide to run the complete test suite or only part of it:
116116 :func: `test_immutable_major ` in the file :file: `test_bump.py ` for all
117117 Python versions::
118118
119- $ tox -e py36 -- tests/test_bump.py::test_should_bump_major
119+ $ tox -e py37 -- tests/test_bump.py::test_should_bump_major
120120
121121 By default, pytest prints only a dot for each test function. To
122122 reveal the executed test function, use the following syntax::
123123
124124 $ tox -- -v
125125
126126 You can combine the specific test function with the ``-e `` option, for
127- example, to limit the tests for Python 3.6 and 3.7 only::
127+ example, to limit the tests for Python 3.7 and 3.8 only::
128128
129- $ tox -e py36, py37 -- tests/test_bump.py::test_should_bump_major
129+ $ tox -e py37,py38 -- tests/test_bump.py::test_should_bump_major
130130
131131Our code is checked against formatting, style, type, and docstring issues
132132(`black `_, `flake8 `_, `mypy `_, and `docformatter `_).
133133It is recommended to run your tests in combination with :command: `checks `,
134134for example::
135135
136- $ tox -e checks,py36, py37
136+ $ tox -e checks,py37,py38
137137
138138
139139.. _doc :
0 commit comments