Merge "Update Unit Test README"

This commit is contained in:
Zuul 2023-06-05 17:26:56 +00:00 committed by Gerrit Code Review
commit c5b28e07a0
2 changed files with 5 additions and 5 deletions

View File

@ -70,19 +70,19 @@ Execute all unit tests
.. code-block:: shell
tox -e py36
tox -e py3
Execute only backend tests
.. code-block:: shell
tox -e py36 -- unit.backend
tox -e py3 -- unit.backend
Execute only a single test
.. code-block:: shell
tox -e py36 -- unit.backend.test_pdns4.PDNS4BackendTestCase.test_create_zone_success
tox -e py3 -- unit.backend.test_pdns4.PDNS4BackendTestCase.test_create_zone_success
Contributing
------------

View File

@ -2,5 +2,5 @@ This directory contains pure unit tests.
Examples:
tox -e py27 -- tests.unit
tox -e py37 -- tests.unit.backend
tox -e py3 -- tests.unit
tox -e py3 -- tests.unit.backend