Quarantined tests which were not running (skipped on Helix) (#23023)

This commit is contained in:
Artak 2020-06-16 21:22:17 -07:00 committed by GitHub
parent 580a6cce0f
commit 2434047663
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 10 additions and 10 deletions

View File

@ -15,7 +15,7 @@ namespace Microsoft.AspNetCore.Components.WebAssembly.Build
public class RuntimeDependenciesResolverTest public class RuntimeDependenciesResolverTest
{ {
[Fact] [Fact]
[SkipOnHelix("https://github.com/dotnet/aspnetcore/issues/10426")] [QuarantinedTest]
public void FindsReferenceAssemblyGraph_ForStandaloneApp() public void FindsReferenceAssemblyGraph_ForStandaloneApp()
{ {
// Arrange // Arrange

View File

@ -198,7 +198,7 @@ namespace Microsoft.AspNetCore.Hosting
} }
[ConditionalFact] [ConditionalFact]
[SkipOnHelix("https://github.com/dotnet/aspnetcore/issues/7291")] [QuarantinedTest]
public async Task WebHostStopAsyncUsesDefaultTimeoutIfGivenTokenDoesNotFire() public async Task WebHostStopAsyncUsesDefaultTimeoutIfGivenTokenDoesNotFire()
{ {
var data = new Dictionary<string, string> var data = new Dictionary<string, string>
@ -313,7 +313,7 @@ namespace Microsoft.AspNetCore.Hosting
} }
[ConditionalFact] [ConditionalFact]
[SkipOnHelix("https://github.com/dotnet/aspnetcore/issues/7291")] [QuarantinedTest]
public void WebHostApplicationLifetimeEventsOrderedCorrectlyDuringShutdown() public void WebHostApplicationLifetimeEventsOrderedCorrectlyDuringShutdown()
{ {
using (var host = CreateBuilder() using (var host = CreateBuilder()

View File

@ -22,7 +22,7 @@ namespace Templates.Test
} }
[ConditionalTheory] [ConditionalTheory]
[SkipOnHelix("missing files")] [QuarantinedTest]
[InlineData("Web.ProjectTemplates")] [InlineData("Web.ProjectTemplates")]
[InlineData("Web.Spa.ProjectTemplates")] [InlineData("Web.Spa.ProjectTemplates")]
public void JSAndJSONInAllTemplates_ShouldNotContainBOM(string projectName) public void JSAndJSONInAllTemplates_ShouldNotContainBOM(string projectName)
@ -64,7 +64,7 @@ namespace Templates.Test
} }
[ConditionalFact] [ConditionalFact]
[SkipOnHelix("missing files")] [QuarantinedTest]
public void RazorFilesInWebProjects_ShouldContainBOM() public void RazorFilesInWebProjects_ShouldContainBOM()
{ {
var projectName = "Web.ProjectTemplates"; var projectName = "Web.ProjectTemplates";

View File

@ -126,7 +126,7 @@ namespace Microsoft.AspNetCore.Server.HttpSys.Listener
} }
[ConditionalFact] [ConditionalFact]
[SkipOnHelix("https://github.com/dotnet/aspnetcore/pull/20718#issuecomment-618758634")] [QuarantinedTest("https://github.com/dotnet/aspnetcore/pull/20718#issuecomment-618758634")]
public void Server_RegisterUnavailablePrefix_ThrowsActionableHttpSysException() public void Server_RegisterUnavailablePrefix_ThrowsActionableHttpSysException()
{ {
var options = new HttpSysOptions(); var options = new HttpSysOptions();

View File

@ -119,7 +119,7 @@ namespace Microsoft.AspNetCore.Server.IIS.FunctionalTests.InProcess
[SkipIfNotAdmin] [SkipIfNotAdmin]
[RequiresNewShim] [RequiresNewShim]
[RequiresIIS(IISCapability.PoolEnvironmentVariables)] [RequiresIIS(IISCapability.PoolEnvironmentVariables)]
[SkipOnHelix("https://github.com/dotnet/aspnetcore-internal/issues/2221")] [QuarantinedTest("https://github.com/dotnet/aspnetcore-internal/issues/2221")]
public async Task StartsWithDotnetInstallLocation(RuntimeArchitecture runtimeArchitecture) public async Task StartsWithDotnetInstallLocation(RuntimeArchitecture runtimeArchitecture)
{ {
var deploymentParameters = Fixture.GetBaseDeploymentParameters(); var deploymentParameters = Fixture.GetBaseDeploymentParameters();

View File

@ -32,7 +32,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.FunctionalTests
[ConditionalFact] [ConditionalFact]
[HostNameIsReachable] [HostNameIsReachable]
[SkipOnHelix("https://github.com/dotnet/aspnetcore/issues/7267")] [QuarantinedTest]
public async Task RegisterAddresses_HostName_Success() public async Task RegisterAddresses_HostName_Success()
{ {
var hostName = Dns.GetHostName(); var hostName = Dns.GetHostName();
@ -344,7 +344,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.FunctionalTests
[ConditionalFact] [ConditionalFact]
[HostNameIsReachable] [HostNameIsReachable]
[SkipOnHelix("https://github.com/dotnet/aspnetcore/issues/7267")] [QuarantinedTest]
public async Task ListenAnyIP_HostName_Success() public async Task ListenAnyIP_HostName_Success()
{ {
var hostName = Dns.GetHostName(); var hostName = Dns.GetHostName();

View File

@ -29,7 +29,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.InMemory.FunctionalTests.Http2
private static X509Certificate2 _x509Certificate2 = TestResources.GetTestCertificate(); private static X509Certificate2 _x509Certificate2 = TestResources.GetTestCertificate();
[ConditionalFact] [ConditionalFact]
[SkipOnHelix("https://github.com/dotnet/aspnetcore/issues/7000")] [QuarantinedTest]
public async Task TlsHandshakeRejectsTlsLessThan12() public async Task TlsHandshakeRejectsTlsLessThan12()
{ {
using (var server = new TestServer(context => using (var server = new TestServer(context =>