Skip to content

Commit

Permalink
Update vscode launch config
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberw committed Aug 7, 2023
1 parent d43db9b commit d68758e
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 @@ -2,12 +2,26 @@
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"name": "Run current file",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"gevent": true
},
{
"name": "Run locust",
"type": "python",
"request": "launch",
"module": "locust",
"args": [
"-f",
"${file}",
"--headless",
"--users=5"
],
"console": "integratedTerminal",
"gevent": true
}
]
}

0 comments on commit d68758e

Please sign in to comment.