BAPSicle/.vscode/launch.json

20 lines
491 B
JSON
Raw Permalink Normal View History

2020-10-28 22:07:13 +00:00
{
"version": "0.2.0",
"configurations": [
2020-10-29 21:23:37 +00:00
{
"name": "Python: Launch Server",
2020-10-29 21:23:37 +00:00
"type": "python",
"request": "launch",
"program": "./launch.py",
2020-10-28 22:07:13 +00:00
"console": "integratedTerminal"
2021-04-05 23:32:58 +00:00
},
{
"name": "Python: Launch Tests: Player",
"type": "python",
"request": "launch",
"module": "tests.test_player",
"console": "integratedTerminal"
2020-10-28 22:07:13 +00:00
}
]
2021-04-05 23:32:58 +00:00
}