forked from microsoft/vscode-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtasks.json
More file actions
62 lines (62 loc) · 1.77 KB
/
Copy pathtasks.json
File metadata and controls
62 lines (62 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"version": "2.0.0",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
},
"tasks": [
{
"label": "Compile",
"type": "npm",
"script": "compile",
"isBackground": true,
"problemMatcher": ["$tsc-watch"],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Run Unit Tests",
"type": "npm",
"script": "test:unittests",
"group": {
"kind": "test",
"isDefault": true
}
},
{
"type": "npm",
"script": "preTestJediLSP",
"problemMatcher": [],
"label": "preTestJediLSP"
},
{
"type": "npm",
"script": "check-python",
"problemMatcher": ["$python"],
"label": "npm: check-python",
"detail": "npm run check-python:ruff && npm run check-python:pyright"
},
{
"label": "npm: check-python (venv)",
"type": "shell",
"command": "bash",
"args": ["-lc", "source .venv/bin/activate && npm run check-python"],
"problemMatcher": [],
"detail": "Activates the repo .venv first (avoids pyenv/shim Python) then runs: npm run check-python",
"windows": {
"command": "pwsh",
"args": [
"-NoProfile",
"-ExecutionPolicy",
"Bypass",
"-Command",
".\\.venv\\Scripts\\Activate.ps1; npm run check-python"
]
}
}
]
}