-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Skip Flakey GivenDotnetTest Tests #47024
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
Skip Flakey GivenDotnetTest Tests #47024
Conversation
In this PR a few days ago I disabled some similar tests: dotnet#46924 It turns out that even more of them are failing about 80%+ of the time after some recent changes to these tests. See here: dotnet#47003 (review) here: dotnet#47004 (review) here: https://github.com/dotnet/sdk/pull/47004/checks?check_run_id=37586911841 here: dotnet#47014 etc. I've already made an issue to track this: dotnet#46923 So I'll keep using that one. The maintainer has been notified.
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 1 out of 1 changed files in this pull request and generated no comments.
Comments suppressed due to low confidence (4)
test/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestsForMultipleTFMs.cs:17
- [nitpick] Consider adding a brief description to the skip message for clarity, e.g., "Skipping due to flakiness:
GivenDotnetTest
Failures #46923".
[Theory(Skip= "https://github.com/dotnet/sdk/issues/46923")]
test/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestsForMultipleTFMs.cs:56
- [nitpick] Consider adding a brief description to the skip message for clarity, e.g., "Skipping due to flakiness:
GivenDotnetTest
Failures #46923".
[Theory(Skip= "https://github.com/dotnet/sdk/issues/46923")]
test/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestsForMultipleTFMs.cs:103
- [nitpick] Consider adding a brief description to the skip message for clarity, e.g., "Skipping due to flakiness:
GivenDotnetTest
Failures #46923".
[Theory(Skip= "https://github.com/dotnet/sdk/issues/46923")]
test/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestsForMultipleTFMs.cs:131
- [nitpick] Consider adding a brief description to the skip message for clarity, e.g., "Skipping due to flakiness:
GivenDotnetTest
Failures #46923".
[Theory(Skip= "https://github.com/dotnet/sdk/issues/46923")]
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.
Looks good. Always make sure to add the Test Debt
label when making issues to skip tests. It allows us to keep track of these kinds of test-skipping issues.
looks like we need to disable a couple more tests... |
I checked the tests, for the following tests we are already working on a fix:
However, for the below tests I checked the old CI and they never actually failed: Please if you have the logs where they failed, let me know in which PRs to look. |
Okay, what about #46924? |
Some of these are related to the missing codecoverage package. I'm going to push changes to remove some of the skip attributes to verify that the missing dependency is resolved and then we should merge this I think |
Closing this in favor of #47095 |
In this PR a few days ago I disabled some similar tests: #46924
It turns out that even more of them are failing about 80%+ of the time after some recent changes to these tests.
See here: #47003 (review) here: #47004 (review) here: https://github.com/dotnet/sdk/pull/47004/checks?check_run_id=37586911841 here: #47014
etc.
I've already made an issue to track this: #46923 So I'll keep using that one. The maintainer has been notified.