We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 105eda6 commit 2fdd707Copy full SHA for 2fdd707
1 file changed
docs/local-development.md
@@ -84,6 +84,22 @@ Open the development server at:
84
http://localhost:8000
85
```
86
87
+## Testing
88
+
89
+Run the Django test suite from the `src` directory:
90
91
+```bash
92
+cd src
93
+../venv/bin/python manage.py test --parallel
94
+```
95
96
+To run tests for a specific app or test module, pass the test label after `test`:
97
98
99
100
+../venv/bin/python manage.py test app.tests --parallel
101
102
103
## Documentation
104
105
Install the docs dependencies with the development requirements, then serve the current checkout:
0 commit comments