mirror of
https://github.com/librecaptcha/lc-core.git
synced 2025-01-27 13:03:12 -05:00
11 lines
209 B
Bash
Executable File
11 lines
209 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 -f tests/locustfile.py
|
|
|
|
kill $JAVA_PID
|