MeiliSearch/script/qc_loop.sh

12 lines
162 B
Bash
Raw Normal View History

2020-05-25 20:39:53 +02:00
#!/usr/bin/env bash
export RUST_BACKTRACE=1
while true
do
cargo test qc_ --release -- --nocapture
if [[ x$? != x0 ]] ; then
exit $?
fi
done