always do all iterations and bail early, we'll process the results later

This commit is contained in:
Christian Schwarz
2024-01-22 10:20:16 +00:00
parent 9a7b75cf20
commit d9744e213c

View File

@@ -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