]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - scripts/clean/server/test.sh
753b8c67eb32724633868679f26c58b612eed0a8
[github/Chocobozzz/PeerTube.git] / scripts / clean / server / test.sh
1 #!/bin/sh
2
3 set -eu
4
5 for i in $(seq 1 6); do
6 dropdb "peertube_test$i"
7 rm -rf "./test$i"
8 rm -f "./config/local-test.json"
9 rm -f "./config/local-test-$i.json"
10 createdb -O peertube "peertube_test$i"
11 redis-cli KEYS "bull-localhost:900$i*" | grep -v empty | xargs --no-run-if-empty redis-cli DEL
12 done