Skip to content

Commit bdba73a

Browse files
committed
chore: disable python unit testing extension for auxillary workspaces: Frontend, Backend, AppData
1 parent 099f0f6 commit bdba73a

File tree

1 file changed

+18
-3
lines changed

1 file changed

+18
-3
lines changed

.devcontainer/InvokeAI.code-workspace

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@
33
{
44
// Folder for the invokeai program data (located at filesystem root)
55
"name": "[AppData]",
6-
"path": "/home/node/invokeai"
6+
"path": "/home/node/invokeai",
7+
"settings": {
8+
"python.testing.pytestEnabled": false,
9+
"python.testing.unittestEnabled": false,
10+
"python.testing.autoTestDiscoverOnSaveEnabled": false
11+
}
712
},
813
{
914
"name": "[Custom Nodes]",
@@ -12,12 +17,22 @@
1217
{
1318
// Folder for specifically the frontend sub-project
1419
"name": "[Frontend]",
15-
"path": "../invokeai/frontend/web"
20+
"path": "../invokeai/frontend/web",
21+
"settings": {
22+
"python.testing.pytestEnabled": false,
23+
"python.testing.unittestEnabled": false,
24+
"python.testing.autoTestDiscoverOnSaveEnabled": false
25+
}
1626
},
1727
{
1828
// Folder for specifically the backend sub-project
1929
"name": "[Backend]",
20-
"path": "../invokeai/backend"
30+
"path": "../invokeai/backend",
31+
"settings": {
32+
"python.testing.pytestEnabled": false,
33+
"python.testing.unittestEnabled": false,
34+
"python.testing.autoTestDiscoverOnSaveEnabled": false
35+
}
2136
},
2237
{
2338
// Folder for the entire git repo.

0 commit comments

Comments
 (0)