mirror of
https://github.com/thegeneralist01/twitter-openapi
synced 2026-01-11 23:50:26 +01:00
36 lines
No EOL
836 B
JSON
36 lines
No EOL
836 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Python: 現在のファイル",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "${file}",
|
|
"console": "integratedTerminal",
|
|
"justMyCode": false
|
|
},
|
|
{
|
|
"name": "build",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "tools/build.py",
|
|
"console": "integratedTerminal",
|
|
"justMyCode": true
|
|
},
|
|
{
|
|
"name": "test",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "test/python/test_serialize.py",
|
|
"console": "integratedTerminal",
|
|
"justMyCode": false,
|
|
"preLaunchTask": "build-task",
|
|
"env": {
|
|
"ERROR_UNCATCHED": "True",
|
|
"STRICT_MODE": "True",
|
|
"MULTI_THREAD": "True",
|
|
"CUESOR_TEST_COUNT": "3"
|
|
}
|
|
}
|
|
]
|
|
} |