Skip to content

Commit

Permalink
#386: update VSCode launch configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
tlamonthezie committed Jun 6, 2023
1 parent 3233bb6 commit 89c0fef
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"version": "0.2.0",
"configurations": [
{
"name": "lbaf:run",
"name": "LBAF: run",
"python": "${workspaceFolder}/venv/bin/python",
"type": "python",
"request": "launch",
Expand All @@ -15,7 +15,7 @@
"args": [ "--configuration", "conf.yaml" ]
},
{
"name": "lbaf:run:bruteforce",
"name": "LBAF: BruteForce",
"python": "${workspaceFolder}/venv/bin/python",
"type": "python",
"request": "launch",
Expand All @@ -25,7 +25,17 @@
"args": [ "--configuration", "tests/config/conf_correct_brute_force.yml" ]
},
{
"name": "lbaf:current_file",
"name": "LBAF: Acceptance Tests",
"python": "${workspaceFolder}/venv/bin/python",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/src/lbaf/__init__.py",
"console": "integratedTerminal",
"justMyCode": true,
"args": [ "--configuration", "config/acceptance_tests/conf.yaml" ]
},
{
"name": "LBAF: current",
"type": "python",
"request": "launch",
"program": "${file}",
Expand Down

0 comments on commit 89c0fef

Please sign in to comment.