Unquarantine some tests (#24075)
* Unquarantine some tests * Quarantine * Link issue
This commit is contained in:
parent
a8bc7ba612
commit
39859c0c18
|
|
@ -34,7 +34,7 @@ namespace A.Internal.Namespace
|
||||||
|
|
||||||
[Theory]
|
[Theory]
|
||||||
[MemberData(nameof(PublicMemberDefinitions))]
|
[MemberData(nameof(PublicMemberDefinitions))]
|
||||||
[QuarantinedTest]
|
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/22440")]
|
||||||
public async Task PublicExposureOfPubternalTypeProducesPUB0001(string member)
|
public async Task PublicExposureOfPubternalTypeProducesPUB0001(string member)
|
||||||
{
|
{
|
||||||
var code = GetSourceFromNamespaceDeclaration($@"
|
var code = GetSourceFromNamespaceDeclaration($@"
|
||||||
|
|
|
||||||
|
|
@ -198,7 +198,6 @@ namespace Microsoft.AspNetCore.Hosting
|
||||||
}
|
}
|
||||||
|
|
||||||
[ConditionalFact]
|
[ConditionalFact]
|
||||||
[QuarantinedTest]
|
|
||||||
public async Task WebHostStopAsyncUsesDefaultTimeoutIfGivenTokenDoesNotFire()
|
public async Task WebHostStopAsyncUsesDefaultTimeoutIfGivenTokenDoesNotFire()
|
||||||
{
|
{
|
||||||
var data = new Dictionary<string, string>
|
var data = new Dictionary<string, string>
|
||||||
|
|
@ -313,7 +312,6 @@ namespace Microsoft.AspNetCore.Hosting
|
||||||
}
|
}
|
||||||
|
|
||||||
[ConditionalFact]
|
[ConditionalFact]
|
||||||
[QuarantinedTest]
|
|
||||||
public void WebHostApplicationLifetimeEventsOrderedCorrectlyDuringShutdown()
|
public void WebHostApplicationLifetimeEventsOrderedCorrectlyDuringShutdown()
|
||||||
{
|
{
|
||||||
using (var host = CreateBuilder()
|
using (var host = CreateBuilder()
|
||||||
|
|
|
||||||
|
|
@ -109,7 +109,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.FunctionalTests
|
||||||
}
|
}
|
||||||
[Theory]
|
[Theory]
|
||||||
[MemberData(nameof(LargeUploadData))]
|
[MemberData(nameof(LargeUploadData))]
|
||||||
[QuarantinedTest]
|
[QuarantinedTest] // This is inherently flaky and should never be unquarantined.
|
||||||
public async Task LargeUpload(long? maxRequestBufferSize, bool connectionAdapter, bool expectPause)
|
public async Task LargeUpload(long? maxRequestBufferSize, bool connectionAdapter, bool expectPause)
|
||||||
{
|
{
|
||||||
// Parameters
|
// Parameters
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue