Attempt to rerun flaky tests to avoid having to rerun the entire GitHub action.

This commit is contained in:
Sönke Ludwig 2020-11-26 14:46:55 +01:00
parent c593bd33b2
commit 10bedb283a
1 changed files with 3 additions and 1 deletions

View File

@ -24,6 +24,8 @@ fi
if [ ${RUN_TEST=1} -eq 1 ]; then
for ex in `\ls -1 tests/*.d`; do
echo "[INFO] Running test $ex"
dub --temp-build --arch=$ARCH --compiler=$DC --override-config eventcore/$CONFIG --single $ex
# NOTE: timer and directory watcher tests tend to be flaky on macOS VMs
dub --temp-build --arch=$ARCH --compiler=$DC --override-config eventcore/$CONFIG --single $ex \
|| dub --temp-build --arch=$ARCH --compiler=$DC --override-config eventcore/$CONFIG --single $ex
done
fi