1
Fork 0
mirror of https://github.com/thegeneralist01/twitter-openapi synced 2026-01-11 15:40:26 +01:00
twitter-openapi/.vscode/launch.json
ふぁ 0a7f111236
update launch
Signed-off-by: ふぁ <yuki@yuki0311.com>
2023-07-30 19:03:30 +09:00

25 lines
562 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Build",
"type": "python",
"request": "launch",
"program": "tools/build.py",
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "Python: Test OpenAPI Serialize",
"type": "python",
"request": "launch",
"program": "test/python/test_serialize.py",
"console": "integratedTerminal",
"justMyCode": false,
"preLaunchTask": "build",
"env": {
"ERROR_UNCATCHED": "True"
}
}
]
}