ensure data directory is present in the repo
to ease running the app on checkout and in CI
This commit is contained in:
parent
9b978212dc
commit
ed3afbc47e
|
@ -17,5 +17,3 @@
|
||||||
/unknown/
|
/unknown/
|
||||||
/lib/fonts/
|
/lib/fonts/
|
||||||
|
|
||||||
# for data/
|
|
||||||
/data
|
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
# Ignore everything in this directory
|
||||||
|
*
|
||||||
|
# Except this file
|
||||||
|
!.gitignore
|
|
@ -3,6 +3,7 @@ set -ex
|
||||||
python3 -m venv testEnv
|
python3 -m venv testEnv
|
||||||
source ./testEnv/bin/activate
|
source ./testEnv/bin/activate
|
||||||
pip install locust
|
pip install locust
|
||||||
|
mkdir -p data/
|
||||||
java -jar target/scala-2.13/LibreCaptcha.jar &
|
java -jar target/scala-2.13/LibreCaptcha.jar &
|
||||||
JAVA_PID=$!
|
JAVA_PID=$!
|
||||||
sleep 4
|
sleep 4
|
||||||
|
|
Loading…
Reference in New Issue