tpre-python/.vscode/settings.json
sangge 91017b6c74
All checks were successful
Test CI / test speed (push) Successful in 19s
feat: init test file
2024-01-03 12:23:25 +08:00

16 lines
403 B
JSON

{
"python.analysis.typeCheckingMode": "basic",
"python.analysis.diagnosticSeverityOverrides": {
"reportUndefinedVariable": "none",
"reportMissingImports": "none"
},
"python.testing.unittestArgs": [
"-v",
"-s",
"./src",
"-p",
"*_test.py"
],
"python.testing.pytestEnabled": false,
"python.testing.unittestEnabled": true
}