Quarantine tests and bump Helix timeouts (#23762)
- see #23756 and #23757 for more info on quarantined tests - see #23760 for more info on Helix timeouts
This commit is contained in:
parent
d0ab959c89
commit
16be480616
|
|
@ -12,6 +12,7 @@
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<CreateHelixPayload>true</CreateHelixPayload>
|
<CreateHelixPayload>true</CreateHelixPayload>
|
||||||
<HelixTimeout>00:30:00</HelixTimeout>
|
<HelixTimeout>00:30:00</HelixTimeout>
|
||||||
|
<HelixTimeout Condition="$(HelixTargetQueue.StartsWith('Windows.10.Amd64'))">00:40:00</HelixTimeout>
|
||||||
<RunQuarantinedTests>false</RunQuarantinedTests>
|
<RunQuarantinedTests>false</RunQuarantinedTests>
|
||||||
<IsWindowsHelixQueue>false</IsWindowsHelixQueue>
|
<IsWindowsHelixQueue>false</IsWindowsHelixQueue>
|
||||||
<IsWindowsHelixQueue Condition="$(HelixTargetQueue.Contains('Windows')) or $(HelixTargetQueue.Contains('windows'))">true</IsWindowsHelixQueue>
|
<IsWindowsHelixQueue Condition="$(HelixTargetQueue.Contains('Windows')) or $(HelixTargetQueue.Contains('windows'))">true</IsWindowsHelixQueue>
|
||||||
|
|
|
||||||
|
|
@ -165,6 +165,7 @@ namespace Microsoft.AspNetCore.Components.E2ETest.Tests
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
|
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23757")]
|
||||||
public void PreventDefaultCanBlockKeystrokes()
|
public void PreventDefaultCanBlockKeystrokes()
|
||||||
{
|
{
|
||||||
// By default, the textbox accepts keystrokes
|
// By default, the textbox accepts keystrokes
|
||||||
|
|
|
||||||
|
|
@ -185,6 +185,7 @@ namespace Microsoft.AspNetCore.Components.E2ETest.Tests
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
|
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23757")]
|
||||||
public void InputEvent_RespondsOnKeystrokes_EvenIfUpdatesAreLaggy()
|
public void InputEvent_RespondsOnKeystrokes_EvenIfUpdatesAreLaggy()
|
||||||
{
|
{
|
||||||
// This test doesn't mean much on WebAssembly - it just shows that even if the CPU is locked
|
// This test doesn't mean much on WebAssembly - it just shows that even if the CPU is locked
|
||||||
|
|
|
||||||
|
|
@ -125,6 +125,7 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
|
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23756")]
|
||||||
public virtual async Task Publish_IncludesRefAssemblies_WhenCopyRefAssembliesToPublishDirectoryIsSet()
|
public virtual async Task Publish_IncludesRefAssemblies_WhenCopyRefAssembliesToPublishDirectoryIsSet()
|
||||||
{
|
{
|
||||||
using (CreateTestProject())
|
using (CreateTestProject())
|
||||||
|
|
|
||||||
|
|
@ -166,6 +166,7 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
|
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23756")]
|
||||||
[InitializeTestProject("AppWithPackageAndP2PReference", language: "C#", additionalProjects: new[] { "ClassLibrary", "ClassLibrary2" })]
|
[InitializeTestProject("AppWithPackageAndP2PReference", language: "C#", additionalProjects: new[] { "ClassLibrary", "ClassLibrary2" })]
|
||||||
public async Task Clean_Success_RemovesManifestAndCache()
|
public async Task Clean_Success_RemovesManifestAndCache()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -81,6 +81,7 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
|
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23756")]
|
||||||
public async Task Publish_WithLinkerAndCompression_IsIncremental()
|
public async Task Publish_WithLinkerAndCompression_IsIncremental()
|
||||||
{
|
{
|
||||||
// Arrange
|
// Arrange
|
||||||
|
|
|
||||||
|
|
@ -232,6 +232,7 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
|
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23756")]
|
||||||
public async Task Publish_SatelliteAssemblies_AreCopiedToBuildOutput()
|
public async Task Publish_SatelliteAssemblies_AreCopiedToBuildOutput()
|
||||||
{
|
{
|
||||||
// Arrange
|
// Arrange
|
||||||
|
|
@ -325,6 +326,7 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
|
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23756")]
|
||||||
public async Task Publish_HostedApp_ProducesBootJsonDataWithExpectedContent()
|
public async Task Publish_HostedApp_ProducesBootJsonDataWithExpectedContent()
|
||||||
{
|
{
|
||||||
// Arrange
|
// Arrange
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@ using System.Linq;
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
using System.Text.RegularExpressions;
|
using System.Text.RegularExpressions;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Testing;
|
||||||
using Xunit;
|
using Xunit;
|
||||||
using static Microsoft.AspNetCore.Razor.Design.IntegrationTests.ServiceWorkerAssert;
|
using static Microsoft.AspNetCore.Razor.Design.IntegrationTests.ServiceWorkerAssert;
|
||||||
|
|
||||||
|
|
@ -110,6 +111,7 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
|
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23756")]
|
||||||
public async Task PublishHostedWithPWA_ProducesAssets()
|
public async Task PublishHostedWithPWA_ProducesAssets()
|
||||||
{
|
{
|
||||||
// Arrange
|
// Arrange
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<HelixTimeout>00:45:00</HelixTimeout>
|
<HelixTimeout>00:45:00</HelixTimeout>
|
||||||
|
<HelixTimeout Condition="$(HelixTargetQueue.StartsWith('Windows.10.Amd64'))">01:00:00</HelixTimeout>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue