From 2e645d1ca63ace0984e0a97d946239dcfb9e3336 Mon Sep 17 00:00:00 2001 From: Jean-Louis Monteiro Date: Mon, 16 Feb 2026 17:16:39 +0100 Subject: [PATCH] Tolerate flaky tests here because it would fail the entire matrix. The PR one does not have the flag so we can still spot the flaky tests --- .github/workflows/ci-nightly.yml | 2 +- .github/workflows/ci-weekly.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-nightly.yml b/.github/workflows/ci-nightly.yml index c2988809f3..205cd10b03 100644 --- a/.github/workflows/ci-nightly.yml +++ b/.github/workflows/ci-nightly.yml @@ -76,7 +76,7 @@ jobs: java-version: ${{ matrix.java-version }} distribution: temurin - name: Test - run: mvn -B -e -fae verify -Pactivemq.tests-quick + run: mvn -B -e -fae verify -Pactivemq.tests-quick -Dsurefire.rerunFailingTestsCount=3 - name: Upload Test Results if: (!cancelled()) uses: actions/upload-artifact@v4 diff --git a/.github/workflows/ci-weekly.yml b/.github/workflows/ci-weekly.yml index a6194c1954..3c07c6b058 100644 --- a/.github/workflows/ci-weekly.yml +++ b/.github/workflows/ci-weekly.yml @@ -70,7 +70,7 @@ jobs: java-version: 17 distribution: temurin - name: Test - run: mvn -B -e -fae verify + run: mvn -B -e -fae verify -Dsurefire.rerunFailingTestsCount=3 - name: Upload Test Results if: (!cancelled()) uses: actions/upload-artifact@v4