Skip to content

Commit 2fdd707

Browse files
committed
document local test command
1 parent 105eda6 commit 2fdd707

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

docs/local-development.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,22 @@ Open the development server at:
8484
http://localhost:8000
8585
```
8686

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+
```bash
99+
cd src
100+
../venv/bin/python manage.py test app.tests --parallel
101+
```
102+
87103
## Documentation
88104

89105
Install the docs dependencies with the development requirements, then serve the current checkout:

0 commit comments

Comments
 (0)