This is an automated email from the ASF dual-hosted git repository.

hubcio pushed a commit to branch feat/iggy-server-hardening
in repository https://gitbox.apache.org/repos/asf/iggy.git

commit c94172fa530f500ee024e8e306f3ba06c45fb3a2
Author: Hubert Gruszecki <[email protected]>
AuthorDate: Fri Jul 24 13:52:01 2026 +0200

    chore(repo): retry flaky tests twice in just nextest recipes
---
 justfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/justfile b/justfile
index ba8096a96..c8bf1ba4f 100644
--- a/justfile
+++ b/justfile
@@ -62,7 +62,7 @@ nextest: build
   #!/usr/bin/env bash
   set -euo pipefail
   trap "{{reap_test_containers}}" EXIT
-  cargo nextest run
+  cargo nextest run --retries 2
 
 # Like `nextest` but with the `vsr` feature; builds vsr first so the
 # harness-spawned iggy-server-ng carries the vsr wire format. `--no-fail-fast`
@@ -73,7 +73,7 @@ nextest-vsr: build-vsr
   #!/usr/bin/env bash
   set -euo pipefail
   trap "{{reap_test_containers}}" EXIT
-  cargo nextest run --features vsr --no-fail-fast
+  cargo nextest run --features vsr --no-fail-fast --retries 2
 
 nextests TEST: build
   #!/usr/bin/env bash

Reply via email to