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
|
||||
.DS_Store
|
||||
.idea/
|
||||
.vscode/
|
||||
.vscode/*
|
||||
!.vscode/settings.json
|
||||
!.vscode/extensions.json
|
||||
|
||||
# Local environment files
|
||||
.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
|
||||
|
||||
py-sync:
|
||||
uv sync --project python
|
||||
uv sync --project python --all-packages
|
||||
|
||||
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