Mercurial > code > home > repos > light9
annotate .vscode/settings.json @ 2203:615046dfe45f
failing to get pytest debugging to work
author | drewp@bigasterisk.com |
---|---|
date | Mon, 22 May 2023 01:03:18 -0700 |
parents | 5ee5e17a3fd3 |
children | b0e6fe19dc3b |
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, |
2143 | 6 "python.analysis.extraPaths": ["__pypackages__/3.10/lib"], |
2203
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
7 "python.autoComplete.extraPaths": ["__pypackages__/3.10/lib"], |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
8 "python.defaultInterpreterPath": "./bin/python", |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
9 "python.formatting.provider": "yapf", |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
10 "python.testing.pytestEnabled": true, |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
11 "python.testing.pytestPath": "./bin/pytest", |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
12 "pythonTestExplorer.testFramework": "pytest", |
2062 | 13 "toTypeScript.fixUnreachableCode": false, |
14 "toTypeScript.fixUnusedLabel": false, | |
2113 | 15 "toTypeScript.forgottenThisPropertyAccess": false, |
2203
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
16 "launch": { |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
17 |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
18 "configurations": [ |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
19 { |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
20 "name": "Python: File", |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
21 "type": "python", |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
22 "request": "launch", |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
23 "program": "${file}", |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
24 "justMyCode": true, |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
25 "python": "./bin/python" |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
26 } |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
27 ], |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
28 "compounds": [] |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
29 } |
2047 | 30 } |