mirror of
https://github.com/librecaptcha/lc-core.git
synced 2025-01-12 22:43:20 -05:00
14 lines
265 B
Bash
Executable File
14 lines
265 B
Bash
Executable File
python3 -m venv testEnv
|
|
source ./testEnv/activate
|
|
pip install locust
|
|
java -jar target/scala-2.13/LibreCaptcha.jar &
|
|
JAVA_PID=$!
|
|
sleep 4
|
|
|
|
locust --headless -u 1000 -r 100 --run-time 4m --stop-timeout 30 -f tests/locustfile.py
|
|
status=$?
|
|
|
|
kill $JAVA_PID
|
|
|
|
exit $status
|