Skip to content

Commit

Permalink
Fix workflow for nightly flaky test detector (#15260)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszcl authored Nov 15, 2024
1 parent 827e003 commit 5f6d46d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/run-nightly-flaky-test-detector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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 }}

0 comments on commit 5f6d46d

Please sign in to comment.