lc-core/tests/run.sh

16 lines
278 B
Bash
Raw Normal View History

2021-04-02 07:12:00 -04:00
set -ex
2021-04-02 06:12:47 -04:00
python3 -m venv testEnv
2021-04-02 07:21:48 -04:00
source ./testEnv/bin/activate
2021-04-02 06:12:47 -04:00
pip install locust
java -jar target/scala-2.13/LibreCaptcha.jar &
JAVA_PID=$!
sleep 4
2021-04-02 06:21:55 -04:00
locust --headless -u 1000 -r 100 --run-time 4m --stop-timeout 30 -f tests/locustfile.py
status=$?
2021-04-02 06:12:47 -04:00
kill $JAVA_PID
exit $status