Skip to content

Instantly share code, notes, and snippets.

@rafamdr
Created October 19, 2020 16:24
Show Gist options
  • Save rafamdr/57636f94a325582024fbfe747f7d800c to your computer and use it in GitHub Desktop.
Save rafamdr/57636f94a325582024fbfe747f7d800c to your computer and use it in GitHub Desktop.
Powershell cmds to start locust master and workers
For ($i=0; $i -le 6; $i++) { Start-Process -FilePath "python" -ArgumentList "-m","locust","-f","locustfile.py","--worker","--master-host=localhost" }
python -m locust -f locustfile.py --master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment