Browse Source

Fix: Path to test argument in tox command

Suyash 2 years ago
parent
commit
8131ed282c
1 changed files with 2 additions and 2 deletions
  1. 2 2
      docs/contributing/developing.md

+ 2 - 2
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