Skip to content

Commit e072644

Browse files
authored
Update README.md
Add links to vscode settings and helpful test command
1 parent 8d1acd5 commit e072644

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pip install pre-commit # Install pre-commit system-wide
2424
pre-commit install # Install the hook for our project
2525
```
2626

27-
If using VS Code, install the formatting extensions that are automatically suggested for the project (e.g. black). Format-on-save should be turned on by default from the project's vscode settings file.
27+
If using VS Code, install the [formatting extensions](.vscode/extensions.json) that are automatically suggested for the project (e.g. black). Format-on-save should be turned on by default from the project's [vscode settings file](.vscode/settings.json).
2828

2929

3030
### Frontend
@@ -103,6 +103,12 @@ docker compose run --rm django python manage.py test
103103
docker compose run --rm django python manage.py test -k pattern
104104
```
105105

106+
##### Run tests and drop into interactive shell on failure
107+
108+
```bash
109+
docker compose run --rm django python manage.py test -k pattern --failfast --pdb
110+
```
111+
106112
##### Launch the Django shell:
107113

108114
docker-compose exec django python manage.py shell

0 commit comments

Comments
 (0)