Skip to content

Commit

Permalink
Merge pull request #124 from Proteobench/launchjson
Browse files Browse the repository at this point in the history
added test configuration to launch.json
  • Loading branch information
RobbinBouwmeester authored Nov 8, 2023
2 parents f773f17 + 3fe6586 commit 5a90dc9
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ ENV/
env.bak/
venv.bak/
.vscode
.idea

# Spyder project settings
.spyderproject
Expand Down
20 changes: 14 additions & 6 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,28 @@

{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Testing",
"type": "python",
"request": "launch",
"program": "${file}",
"purpose": ["debug-test"],
"console": "integratedTerminal",
"justMyCode": false
},
{
"name": "Python: BStreamlit",
"type": "python",
"request": "launch",
"module": "streamlit",
"args": [
"run",
"Home.py",
"--server.port",
"8080"
"run",
"Home.py",
"--server.port",
"8080"
],
"cwd": "${workspaceFolder}/webinterface/",
"justMyCode":false
"justMyCode": false
}
]
}

0 comments on commit 5a90dc9

Please sign in to comment.