We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4817c91 commit 9fb5a78Copy full SHA for 9fb5a78
README.md
@@ -1087,3 +1087,21 @@ python3 manage.py test
1087
```sh
1088
copy .githooks\pre-push .git\hooks\pre-push
1089
```
1090
+
1091
+15. Setup VS Code test runner
1092
1093
+- Add manage.py path variable in `.env` file
1094
1095
+ ```env
1096
+ MANAGE_PY_PATH=manage.py
1097
+ ```
1098
1099
+- Configure VS Code to for test runner in `.vscode/settings.json`
1100
1101
+ ```json
1102
+ {
1103
+ "python.testing.unittestEnabled": true,
1104
+ "python.testing.pytestEnabled": false,
1105
+ "python.testing.unittestArgs": ["-p", "*test*.py"]
1106
+ }
1107
0 commit comments