lc-core/tests/run.sh
2021-04-02 15:51:55 +05:30

11 lines
241 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
kill $JAVA_PID