vscode: fix missing python modules, ultimately due to uv sync issue
This commit is contained in:
+3
-1
@@ -1,7 +1,9 @@
|
|||||||
# OS/editor noise
|
# OS/editor noise
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.idea/
|
.idea/
|
||||||
.vscode/
|
.vscode/*
|
||||||
|
!.vscode/settings.json
|
||||||
|
!.vscode/extensions.json
|
||||||
|
|
||||||
# Local environment files
|
# Local environment files
|
||||||
.env
|
.env
|
||||||
|
|||||||
Vendored
+3
@@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"recommendations": ["ms-python.python"]
|
||||||
|
}
|
||||||
Vendored
+3
@@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"python.defaultInterpreterPath": "${workspaceFolder}/python/.venv/bin/python"
|
||||||
|
}
|
||||||
@@ -11,7 +11,7 @@ buf-generate:
|
|||||||
$(BUF) generate
|
$(BUF) generate
|
||||||
|
|
||||||
py-sync:
|
py-sync:
|
||||||
uv sync --project python
|
uv sync --project python --all-packages
|
||||||
|
|
||||||
go-test:
|
go-test:
|
||||||
cd clients/go && go test ./...
|
cd clients/go && go test ./...
|
||||||
|
|||||||
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"venvPath": "python",
|
||||||
|
"venv": ".venv",
|
||||||
|
"extraPaths": [
|
||||||
|
"gen/python",
|
||||||
|
"python/packages/officeconvert/src",
|
||||||
|
"python/packages/server/src"
|
||||||
|
]
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user