Mercurial > code > home > repos > light9
annotate .vscode/settings.json @ 2257:8ebf79d6b957
add vitest
author | drewp@bigasterisk.com |
---|---|
date | Mon, 29 May 2023 11:33:23 -0700 |
parents | b0e6fe19dc3b |
children | 6c61735514e9 |
rev | line source |
---|---|
2047 | 1 { |
2203
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
2 "djlint.pythonPath": "./bin/python", |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
3 "python.analysis.autoFormatStrings": true, |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
4 "python.analysis.diagnosticMode": "workspace", |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
5 "python.analysis.enablePytestSupport": true, |
2222 | 6 "python.analysis.extraPaths": [ |
7 "__pypackages__/3.10/lib", | |
8 "/my/proj/rdfdb" | |
9 ], | |
2203
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
10 "python.autoComplete.extraPaths": ["__pypackages__/3.10/lib"], |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
11 "python.defaultInterpreterPath": "./bin/python", |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
12 "python.formatting.provider": "yapf", |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
13 "python.testing.pytestEnabled": true, |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
14 "python.testing.pytestPath": "./bin/pytest", |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
15 "pythonTestExplorer.testFramework": "pytest", |
2062 | 16 "toTypeScript.fixUnreachableCode": false, |
17 "toTypeScript.fixUnusedLabel": false, | |
2113 | 18 "toTypeScript.forgottenThisPropertyAccess": false, |
2203
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
19 "launch": { |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
20 |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
21 "configurations": [ |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
22 { |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
23 "name": "Python: File", |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
24 "type": "python", |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
25 "request": "launch", |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
26 "program": "${file}", |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
27 "justMyCode": true, |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
28 "python": "./bin/python" |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
29 } |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
30 ], |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
31 "compounds": [] |
2257 | 32 }, |
33 "vitest.commandLine": "pnpm exec vitest", | |
34 "vitest.enable": true | |
2047 | 35 } |