-
Notifications
You must be signed in to change notification settings - Fork 36
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
debug CI retries #4074
base: main
Are you sure you want to change the base?
debug CI retries #4074
Conversation
QA Wolf here! As you write new code it's important that your test coverage is keeping up. |
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@@ -352,8 +364,20 @@ jobs: | |||
if: ${{ !cancelled() && (success() || failure()) }} | |||
continue-on-error: true | |||
with: | |||
name: test-results-${{ matrix.os }}-${{ github.sha }} | |||
name: test-results-electron-${{ matrix.os }}-${{ github.sha }} |
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.
This was definitely a bug, but I don't know why the non-electron tests retries didn't work.
I believe I fixed this yes. For example https://github.com/KittyCAD/modeling-app/blob/main/.github/workflows/playwright.yml#L387 this line of code didn't have You can see it working here https://github.com/KittyCAD/modeling-app/actions/runs/11151744354/job/30995866650?pr=4062 |
@jtran I think I realized what Kurt was fixing. There are two scenarios, running with When a job fails after the 3 retries and you need to rerun the entire job it will run the whole suite again, not the last-failed ones. This one is still an issue. |
re running CI no longer on runs the previously failed tests, I have no idea why, so trying to add some debug steps to get some insights as to what might be going wrong.