From 8131ed282c1f2514f295b09785d5d0a49eb9e6da Mon Sep 17 00:00:00 2001 From: Suyash Date: Sun, 5 Feb 2023 06:36:10 +0530 Subject: [PATCH] Fix: Path to test argument in tox command --- docs/contributing/developing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/contributing/developing.md b/docs/contributing/developing.md index d5bd218d67..4161dc8dde 100644 --- a/docs/contributing/developing.md +++ b/docs/contributing/developing.md @@ -90,7 +90,7 @@ an argument to `runtests.py` or `tox`: python runtests.py wagtail # Running in a specified Tox environment -tox -e py39-dj32-sqlite-noelasticsearch wagtail +tox -e py39-dj32-sqlite-noelasticsearch -- wagtail # See a list of available Tox environments tox -l @@ -104,7 +104,7 @@ an argument to `runtests.py` python runtests.py wagtail.tests.test_blocks.TestIntegerBlock # Running in a specified Tox environment -tox -e py39-dj32-sqlite-noelasticsearch wagtail.tests.test_blocks.TestIntegerBlock +tox -e py39-dj32-sqlite-noelasticsearch -- wagtail.tests.test_blocks.TestIntegerBlock ``` ### Running migrations for the test app models