mirror of
https://github.com/9001/copyparty.git
synced 2025-10-03 09:49:29 +02:00
15 lines
225 B
Bash
Executable file
15 lines
225 B
Bash
Executable file
#!/bin/bash
|
|
set -ex
|
|
|
|
pids=()
|
|
for py in python{2,3}; do
|
|
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
|