From 9b793dc1f97fc341daf6f7d9381269d3a90f9c47 Mon Sep 17 00:00:00 2001 From: David Arthur Date: Tue, 4 Feb 2025 10:35:41 -0500 Subject: [PATCH] MINOR increase max flaky tests allowed (#18792) Increase the maximum number of flaky tests we tolerate for the main test suite from 3 to 10. This will result in fewer failed builds. Reviewers: Chia-Ping Tsai --- .github/actions/run-gradle/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/run-gradle/action.yml b/.github/actions/run-gradle/action.yml index 18d6bdeb1f558..12d31a506302e 100644 --- a/.github/actions/run-gradle/action.yml +++ b/.github/actions/run-gradle/action.yml @@ -58,7 +58,7 @@ runs: timeout ${TIMEOUT_MINUTES}m ./gradlew --build-cache --continue --no-scan \ -PtestLoggingEvents=started,passed,skipped,failed \ -PmaxParallelForks=2 \ - -PmaxTestRetries=1 -PmaxTestRetryFailures=3 \ + -PmaxTestRetries=1 -PmaxTestRetryFailures=10 \ -PmaxQuarantineTestRetries=3 -PmaxQuarantineTestRetryFailures=0 \ -Pkafka.test.catalog.file=$TEST_CATALOG \ -PcommitId=xxxxxxxxxxxxxxxx \ @@ -72,4 +72,4 @@ runs: name: ${{ inputs.build-scan-artifact-name }} path: ~/.gradle/build-scan-data compression-level: 9 - if-no-files-found: ignore \ No newline at end of file + if-no-files-found: ignore