Skip to content

Commit

Permalink
add vscode config for running tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Arvengeance committed Mar 16, 2022
1 parent 460288d commit 2185b17
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ tmp/
.idea/
public/
lsp/
.vscode/
__pycache__/

*.log
*.zip
Expand Down
24 changes: 24 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
// Verwendet IntelliSense zum Ermitteln möglicher Attribute.
// Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen.
// Weitere Informationen finden Sie unter https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "robotframework-lsp",
"name": "Robot Framework: Launch template",
"request": "launch",
"args": ["-V","tests/robot/config.py","-d","logs","-b","debug.log"]
},
{
"type": "robotframework-lsp",
"name": "Robot Framework: Launch .robot file",
"request": "launch",
"cwd": "^\"\\${workspaceFolder}\"",
"target": "^\"\\${file}\"",
"terminal": "integrated",
"env": {},
"args": ["-V","tests/robot/config.py","-d","logs","-b","debug.log"]
}
]
}

0 comments on commit 2185b17

Please sign in to comment.