Skip to content

Commit

Permalink
Merge branch 'main' into feature/full-observability-radial
Browse files Browse the repository at this point in the history
  • Loading branch information
TonyXiang8787 authored Dec 18, 2024
2 parents d0bf3b9 + cce1408 commit 16b0472
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .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": "Debug validation test",
"name": "Debug validation test [Unix]",
"type": "cppdbg",
"request": "launch",
"program": "${command:cmake.buildDirectory}/bin/power_grid_model_validation_tests",
Expand All @@ -23,6 +23,20 @@
"osx": {
"MIMode": "lldb"
},
},
{
"name": "Debug validation test [Windows]",
"type": "cppvsdbg",
"request": "launch",
"program": "${command:cmake.buildDirectory}/bin/power_grid_model_validation_tests.exe",
"args": [
"--test-case=Validation test single",
"--subcase=power_flow/1os2msr-sym-newton_raphson"
],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"console": "integratedTerminal",
}
]
}

0 comments on commit 16b0472

Please sign in to comment.