From 5f6d46d194c83610f075d12099f53073a2606051 Mon Sep 17 00:00:00 2001 From: Lukasz <120112546+lukaszcl@users.noreply.github.com> Date: Fri, 15 Nov 2024 13:43:30 +0100 Subject: [PATCH] Fix workflow for nightly flaky test detector (#15260) --- .github/workflows/run-nightly-flaky-test-detector.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-nightly-flaky-test-detector.yml b/.github/workflows/run-nightly-flaky-test-detector.yml index 615233a6106..1c5dc72d4a3 100644 --- a/.github/workflows/run-nightly-flaky-test-detector.yml +++ b/.github/workflows/run-nightly-flaky-test-detector.yml @@ -4,6 +4,7 @@ on: schedule: # Run every night at 3:00 AM UTC - cron: '0 3 * * *' + workflow_dispatch: # Allows manual trigger for debugging jobs: trigger-flaky-test-detection: @@ -14,8 +15,8 @@ jobs: baseRef: 'origin/develop' projectPath: '.' runThreshold: '1' - runAllTests: 'true' - extraArgs: '{ "skipped_tests": "TestChainComponents", "test_repeat_count": "5", "all_tests_runner": "ubuntu22.04-32cores-128GB", "all_tests_runner_count": "3", "min_pass_ratio": "0" }' + runAllTests: true + extraArgs: '{ "skipped_tests": "TestChainComponents", "test_repeat_count": "5", "all_tests_runner": "ubuntu22.04-32cores-128GB", "all_tests_runner_count": "3", "min_pass_ratio": "0", "run_with_race": "false" }' secrets: SLACK_BOT_TOKEN: ${{ secrets.QA_SLACK_API_KEY }} \ No newline at end of file