From 77f96a1f87515f0ba06a48ae0a45b3d07bfd97d0 Mon Sep 17 00:00:00 2001 From: SaitTalhaNisanci Date: Thu, 12 Mar 2020 12:50:06 +0300 Subject: [PATCH] retry vanilla tests if they fail once more (#3611) --- src/test/regress/Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/test/regress/Makefile b/src/test/regress/Makefile index 24ead9751..3ca89369b 100644 --- a/src/test/regress/Makefile +++ b/src/test/regress/Makefile @@ -128,6 +128,11 @@ check-isolation-base: all $(isolation_test_files) -- $(MULTI_REGRESS_OPTS) $(EXTRA_TESTS) check-vanilla: all + # it is possible that sometimes vanilla tests will fail, which is related to postgres. + # So we try it once more if it fails to prevent some failures in our CI. + ${MAKE} check-vanilla-internal || ${MAKE} check-vanilla-internal + +check-vanilla-internal: $(pg_regress_multi_check) --load-extension=citus --vanillatest check-multi-mx: all