mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-04 20:18:55 +01:00
12 lines
162 B
Bash
12 lines
162 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
export RUST_BACKTRACE=1
|
||
|
|
||
|
while true
|
||
|
do
|
||
|
cargo test qc_ --release -- --nocapture
|
||
|
if [[ x$? != x0 ]] ; then
|
||
|
exit $?
|
||
|
fi
|
||
|
done
|