Created
October 19, 2020 16:24
-
-
Save rafamdr/57636f94a325582024fbfe747f7d800c to your computer and use it in GitHub Desktop.
Powershell cmds to start locust master and workers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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