Skip to content

Commit

Permalink
Added VS Code debug configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
MidnessX committed Nov 22, 2022
1 parent 7db0fe6 commit ffb921e
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Test modules",
"type": "python",
"request": "launch",
"program": "tests/test_modules.py",
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "Test model",
"type": "python",
"request": "launch",
"program": "tests/test_model.py",
"console": "integratedTerminal",
"justMyCode": true
}
]
}

0 comments on commit ffb921e

Please sign in to comment.