-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
Disable frequently failing tests #101439
Disable frequently failing tests #101439
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.
LGTM
Tagging subscribers to this area: @dotnet/ncl |
[SkipOnPlatform(TestPlatforms.Browser, "CookieContainer is not supported on Browser")] | ||
public async Task GetAsync_SetCookieContainerAndCookieHeader_BothCookiesSent() | ||
{ | ||
if (UseVersion == HttpVersion30) |
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 will work as well, but what I've seen, we usually override the failing test in the H3 implementation class and put the ActiveIssue
attribute on that.
@@ -71,9 +73,14 @@ fromVersion.Major switch | |||
{ HttpVersion.Version20, false } | |||
}; | |||
|
|||
[Fact] | |||
[ConditionalFact] | |||
public async Task AltSvc_ConnectionFrame_UpgradeFrom20_Success() |
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.
I believe this one is always about H/2 -> H/3 upgrade, so this should be just [ActiveIssue]
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.
Let's merge it like this to reduce the noise, we can address Mana's and mine comments as a follow-up
As discussed offline, the problem might get fixed by the combination of the following PRs: #101447 and #101250 |
This reverts commit e01db17.
This reverts commit e01db17.
This reverts commit e01db17.
Related to