-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
[Testing] Fix for flaky UITests in CI that occasionally fail. #27453
base: main
Are you sure you want to change the base?
[Testing] Fix for flaky UITests in CI that occasionally fail. #27453
Conversation
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.
Copilot reviewed 5 out of 8 changed files in this pull request and generated no comments.
Files not reviewed (3)
- src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue25514.cs: Evaluated as low risk
- src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue8761.cs: Evaluated as low risk
- src/Controls/tests/TestCases.Shared.Tests/UITest.cs: Evaluated as low risk
Comments suppressed due to low confidence (1)
src/Controls/tests/TestCases.HostApp/Issues/Issue7393.cs:6
- [nitpick] The string 'IsGrouped is true' should be 'IsGrouped="true"' for consistency with the original format.
[Issue(IssueTracker.Github, 7393, "[Bug] CollectionView problems and crashes with IsGrouped is true",
/azp run |
Azure Pipelines successfully started running 3 pipeline(s). |
@@ -236,6 +236,20 @@ but both can happen. | |||
} | |||
} | |||
|
|||
protected void VerifyInternetConnectivity() |
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.
Update the Issue3262.class
to avoid duplicated code.
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 has already been updated and committed in the PR: #27284
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.
@jsuarezruiz , Yes, these test failures are related to the VerifyInternetConnection method, and the fix for this issue has already been implemented in the PR #27284 |
So, the plan would be merge #27284 first and then rebase to fix this one, right? |
@jsuarezruiz , Yes, the plan is to first merge #27284 and then rebase here. |
Description of Change
This PR includes fixes for flaky UITest cases that were causing sporadic failures in the CI pipeline.
TestCases
Fixes #23064
Fixes #27272