Skip to content

Commit

Permalink
Update launch.json for devcontainer
Browse files Browse the repository at this point in the history
  • Loading branch information
kmagusiak committed Apr 2, 2024
1 parent 7ab4d8c commit b9f5a61
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions scripts/launch.devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"configurations": [
{
"name": "Odoo Debug",
"type": "python",
"type": "debugpy",
"request": "launch",
"redirectOutput": false,
"cwd": "${workspaceFolder}",
Expand All @@ -17,7 +17,7 @@
},
{
"name": "Odoo Shell",
"type": "python",
"type": "debugpy",
"request": "launch",
"redirectOutput": false,
"cwd": "${workspaceFolder}",
Expand All @@ -31,7 +31,7 @@
},
{
"name": "Odoo Test",
"type": "python",
"type": "debugpy",
"request": "launch",
"redirectOutput": false,
"cwd": "${workspaceFolder}",
Expand All @@ -47,7 +47,7 @@
},
{
"name": "pytest debug",
"type": "python",
"type": "debugpy",
"request": "launch",
"redirectOutput": false,
"cwd": "${workspaceFolder}",
Expand All @@ -57,5 +57,12 @@
"${file}"
]
}
],
"inputs": [
{
"id": "odoo_module",
"type": "promptString",
"description": "Odoo module to test"
}
]
}

0 comments on commit b9f5a61

Please sign in to comment.