Update Unit Test README

Change-Id: If6ac155efed0d26054c09a71f293c4dfaf5e187a
This commit is contained in:
Erik Olof Gunnar Andersson 2023-06-04 20:48:31 -07:00
parent aacea51715
commit 92f9639e8d
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