From d9744e213ce26e85f7cbfa653d05e8ee6b0be742 Mon Sep 17 00:00:00 2001 From: Christian Schwarz Date: Mon, 22 Jan 2024 10:20:16 +0000 Subject: [PATCH] always do all iterations and bail early, we'll process the results later --- .github/workflows/build_and_test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index db6ab19f34..8e9864694c 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -342,8 +342,10 @@ jobs: - name: Run rust tests run: | for i in $(seq 1 60); do - NEON_PAGESERVER_UNIT_TEST_VIRTUAL_FILE_IOENGINE=tokio-epoll-uring ${cov_prefix} cargo nextest run $CARGO_FLAGS $CARGO_FEATURES + echo "TEST RUN iteration $i" + NEON_PAGESERVER_UNIT_TEST_VIRTUAL_FILE_IOENGINE=tokio-epoll-uring ${cov_prefix} cargo nextest run $CARGO_FLAGS $CARGO_FEATURES || true done + exit 1 # Run separate tests for real S3 export ENABLE_REAL_S3_REMOTE_STORAGE=nonempty