-
Notifications
You must be signed in to change notification settings - Fork 10.5k
Unquarantine tests #39659
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
Unquarantine tests #39659
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -156,12 +156,10 @@ public async Task PassesThroughCompressionInProcess() | |
| } | ||
|
|
||
| [ConditionalFact] | ||
| [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/26294")] | ||
| [SkipNonHelix("This test takes 5 minutes to run")] | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Running successfully 💯% of the time isn't sufficient reason to un-quarantine. Does the following apply (from the doc)❔
|
||
| public async Task ReadAndWriteSynchronously() | ||
| { | ||
| var content = new StringContent(new string('a', 100000)); | ||
| for (int i = 0; i < 500; i++) | ||
| for (int i = 0; i < 50; i++) | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why fewer iterations? |
||
| { | ||
| var response = await _fixture.Client.PostAsync("ReadAndWriteSynchronously", content); | ||
| var responseText = await response.Content.ReadAsStringAsync(); | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -225,7 +225,6 @@ public async Task ReaderThrowsCanceledException() | |
| } | ||
|
|
||
| [ConditionalFact] | ||
| [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/27400")] | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This issue was also never marked as |
||
| public async Task ReaderThrowsResetExceptionOnInvalidBody() | ||
| { | ||
| var requestStartedCompletionSource = CreateTaskCompletionSource(); | ||
|
|
||
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.
Why is this test an un-quarantine candidate❔ There's no record of a fix.