mirror of
https://github.com/9001/copyparty.git
synced 2025-08-17 09:02:15 -06:00
16 lines
225 B
Bash
Executable file
16 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
|