github.com/tickoalcantara12/micro/v3@v3.0.0-20221007104245-9d75b9bcbab9/test/loop.sh (about) 1 # This file intended to be run manually to test for flakes 2 3 while true; do 4 go clean -testcache && go test --tags=integration -v ./...; 5 if [ $? -ne 0 ]; then 6 spd-say "The tests are flaky"; 7 fi; 8 done