Spaces:
Sleeping
Sleeping
Jonathan Card commited on
Commit ·
01b1fee
1
Parent(s): 5dc04ad
settings file
Browse filesI don't like checking in the settings.json file in .vscode, but these settings are necessary to run the unittests in VS Code, it took me forever to figure them out, and I didn't want others to be blocked.
- .vscode/settings.json +5 -0
.vscode/settings.json
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"python.terminal.activateEnvInCurrentTerminal": true,
|
| 3 |
+
"python.envFile": "${workspaceFolder}/.env",
|
| 4 |
+
"python.testing.unittestEnabled": true
|
| 5 |
+
}
|