-
Notifications
You must be signed in to change notification settings - Fork 448
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test(cli): add retry for cli tests #8574
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
No changes to documentation |
Coverage Report
File CoverageNo changed files found. |
⚡️ Editor Performance ReportUpdated Mon, 10 Feb 2025 16:07:28 GMT
Detailed information🏠 Reference resultThe performance result of
🧪 Experiment resultThe performance result of this branch
📚 Glossary
|
Component Testing Report Updated Feb 10, 2025 4:11 PM (UTC) ❌ Failed Tests (3) -- expand for details
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Neat - prefer to add the retry on all tests over adding to select flakey tests? Fine with this though
Good point. The drawback with retrying all tests is that legit test failures will be retried 4 times for no good reason. I don't think that will be a problem in practice though, and also not sure if it's that easy to identify which exact ones are flaky either? This is a super low-effort quickfix, so I'll merge for now, but lets reconsider if we find issues with it. |
Description
CLI tests are sometimes flaky. This adds retrying to cli tests similar to what we did for e2e tests in #8501, and unit tests in #8371
What to review
Makes sense?
Notes for release
n/a – internal