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