diff options
| author | Stephen Finucane <sfinucan@redhat.com> | 2020-10-01 21:50:40 +0100 |
|---|---|---|
| committer | Stephen Finucane <sfinucan@redhat.com> | 2020-11-05 14:15:37 +0000 |
| commit | 0a7f2692c62846bb0d49d366df65f1cfc2565f03 (patch) | |
| tree | a7f40bb05916fc0d66c0293841a0286e4592f558 /doc/source | |
| parent | cb6659d7cd28f9c9c6481c9222ff6d3a5308410a (diff) | |
| download | python-openstackclient-0a7f2692c62846bb0d49d366df65f1cfc2565f03.tar.gz | |
Remove references to Python 2.7
We don't support it anymore. This is just noise now.
Change-Id: I3640e7d8e520db69f83f95e9c7759279f7c15008
Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
Diffstat (limited to 'doc/source')
| -rw-r--r-- | doc/source/contributor/developing.rst | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/doc/source/contributor/developing.rst b/doc/source/contributor/developing.rst index a3198493..9142edb8 100644 --- a/doc/source/contributor/developing.rst +++ b/doc/source/contributor/developing.rst @@ -59,13 +59,13 @@ To run the full suite of tests maintained within OpenStackClient. virtualenvs. You can later use the ``-r`` option with ``tox`` to rebuild your virtualenv in a similar manner. - -To run tests for one or more specific test environments(for example, the most common configuration of -Python 2.7 and PEP-8), list the environments with the ``-e`` option, separated by spaces: +To run tests for one or more specific test environments(for example, the most +common configuration of the latest Python version and PEP-8), list the +environments with the ``-e`` option, separated by spaces: .. code-block:: bash - $ tox -e py27,pep8 + $ tox -e py38,pep8 See ``tox.ini`` for the full list of available test environments. @@ -96,9 +96,9 @@ Using PDB breakpoints with ``tox`` and ``testr`` normally does not work since the tests fail with a `BdbQuit` exception rather than stopping at the breakpoint. -To run with PDB breakpoints during testing, use the `debug` ``tox`` environment -rather than ``py27``. For example, passing a test name since you will normally -only want to run the test that hits your breakpoint: +To run with PDB breakpoints during testing, use the ``debug`` ``tox`` +environment. For example, passing a test name since you will normally only want +to run the test that hits your breakpoint: .. code-block:: bash @@ -207,4 +207,3 @@ Example from openstackclient import shell from openstackclient.tests import utils from unittest import mock - |
