more status on admin panel

This commit is contained in:
ed 2021-06-12 01:39:14 +02:00
parent 081d2cc5d7
commit 88ce008e16
7 changed files with 124 additions and 45 deletions

View file

@ -3,10 +3,13 @@ set -ex
pids=()
for py in python{2,3}; do
$py -m unittest discover -s tests >/dev/null &
nice $py -m unittest discover -s tests >/dev/null &
pids+=($!)
done
python3 scripts/test/smoketest.py &
pids+=($!)
for pid in ${pids[@]}; do
wait $pid
done