You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pre-commit install # Install the hook for our project
25
25
```
26
26
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).
28
28
29
29
30
30
### Frontend
@@ -103,6 +103,12 @@ docker compose run --rm django python manage.py test
103
103
docker compose run --rm django python manage.py test -k pattern
104
104
```
105
105
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
0 commit comments