diff --git a/eng/QuarantinedTests.BeforeArcade.props b/eng/QuarantinedTests.BeforeArcade.props index 5fa5fdcaf657..5178a85df1e0 100644 --- a/eng/QuarantinedTests.BeforeArcade.props +++ b/eng/QuarantinedTests.BeforeArcade.props @@ -1,9 +1,14 @@ - + <_QuarantinedTestRunAdditionalArgs>-trait "Quarantined=true" <_NonQuarantinedTestRunAdditionalArgs>-notrait "Quarantined=true" + + <_QuarantinedTestRunAdditionalArgs>--filter Quarantined=true + <_NonQuarantinedTestRunAdditionalArgs>--filter Quarantined!=true + + $(_NonQuarantinedTestRunAdditionalArgs) $(TestRunnerAdditionalArguments) $(_QuarantinedTestRunAdditionalArgs) $(TestRunnerAdditionalArguments) diff --git a/eng/Workarounds.props b/eng/Workarounds.props index a56cf44b4661..916761855790 100644 --- a/eng/Workarounds.props +++ b/eng/Workarounds.props @@ -13,7 +13,7 @@ false - + $(TestRunnerAdditionalArguments) -nocolor diff --git a/src/Components/WebAssembly/Sdk/integrationtests/Directory.Build.props b/src/Components/WebAssembly/Sdk/integrationtests/Directory.Build.props new file mode 100644 index 000000000000..aa329a3810e0 --- /dev/null +++ b/src/Components/WebAssembly/Sdk/integrationtests/Directory.Build.props @@ -0,0 +1,9 @@ + + + + true + $(TestRunnerAdditionalArguments) --blame "CollectHangDump;TestTimeout=6m" + + + + \ No newline at end of file diff --git a/src/Components/WebAssembly/Sdk/integrationtests/WasmBuildIntegrationTest.cs b/src/Components/WebAssembly/Sdk/integrationtests/WasmBuildIntegrationTest.cs index 2a0e92fcc6da..5913d7cc0522 100644 --- a/src/Components/WebAssembly/Sdk/integrationtests/WasmBuildIntegrationTest.cs +++ b/src/Components/WebAssembly/Sdk/integrationtests/WasmBuildIntegrationTest.cs @@ -287,7 +287,6 @@ public async Task Build_Hosted_Works() } [Fact] - [QuarantinedTest] public async Task Build_SatelliteAssembliesAreCopiedToBuildOutput() { // Arrange diff --git a/src/Components/WebAssembly/Sdk/integrationtests/WasmBuildLazyLoadTest.cs b/src/Components/WebAssembly/Sdk/integrationtests/WasmBuildLazyLoadTest.cs index ed5572fb2ec5..943dd003d844 100644 --- a/src/Components/WebAssembly/Sdk/integrationtests/WasmBuildLazyLoadTest.cs +++ b/src/Components/WebAssembly/Sdk/integrationtests/WasmBuildLazyLoadTest.cs @@ -89,7 +89,6 @@ public async Task Build_LazyLoadExplicitAssembly_Release_Works() } [Fact] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23756")] public async Task Publish_LazyLoadExplicitAssembly_Debug_Works() { // Arrange diff --git a/src/Components/WebAssembly/Sdk/integrationtests/WasmCompressionTests.cs b/src/Components/WebAssembly/Sdk/integrationtests/WasmCompressionTests.cs index d7dc25528e0e..cc543b3982ad 100644 --- a/src/Components/WebAssembly/Sdk/integrationtests/WasmCompressionTests.cs +++ b/src/Components/WebAssembly/Sdk/integrationtests/WasmCompressionTests.cs @@ -11,7 +11,6 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests public class WasmCompressionTests { [Fact] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23397")] public async Task Publish_UpdatesFilesWhenSourcesChange() { // Arrange @@ -51,7 +50,6 @@ public async Task Publish_UpdatesFilesWhenSourcesChange() } [Fact] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23397")] public async Task Publish_WithoutLinkerAndCompression_UpdatesFilesWhenSourcesChange() { // Arrange @@ -82,7 +80,6 @@ public async Task Publish_WithoutLinkerAndCompression_UpdatesFilesWhenSourcesCha } [Fact] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23756")] public async Task Publish_WithLinkerAndCompression_IsIncremental() { // Arrange diff --git a/src/Components/WebAssembly/Sdk/integrationtests/WasmPublishIntegrationTest.cs b/src/Components/WebAssembly/Sdk/integrationtests/WasmPublishIntegrationTest.cs index 59359a596e8a..3022e5af2f05 100644 --- a/src/Components/WebAssembly/Sdk/integrationtests/WasmPublishIntegrationTest.cs +++ b/src/Components/WebAssembly/Sdk/integrationtests/WasmPublishIntegrationTest.cs @@ -146,7 +146,6 @@ public async Task Publish_WithScopedCss_Works() } [Fact] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23756")] public async Task Publish_InRelease_Works() { // Arrange @@ -314,7 +313,6 @@ public async Task Publish_WithTrimmingdDisabled_Works() } [Fact] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23756")] public async Task Publish_SatelliteAssemblies_AreCopiedToBuildOutput() { // Arrange @@ -348,7 +346,6 @@ public async Task Publish_SatelliteAssemblies_AreCopiedToBuildOutput() } [Fact] - [QuarantinedTest] public async Task Publish_HostedApp_DefaultSettings_Works() { // Arrange @@ -410,7 +407,6 @@ public async Task Publish_HostedApp_DefaultSettings_Works() } [Fact] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23756")] public async Task Publish_HostedApp_ProducesBootJsonDataWithExpectedContent() { // Arrange diff --git a/src/Razor/Microsoft.NET.Sdk.Razor/integrationtests/Directory.Build.props b/src/Razor/Microsoft.NET.Sdk.Razor/integrationtests/Directory.Build.props new file mode 100644 index 000000000000..6b754968a649 --- /dev/null +++ b/src/Razor/Microsoft.NET.Sdk.Razor/integrationtests/Directory.Build.props @@ -0,0 +1,9 @@ + + + + true + $(TestRunnerAdditionalArguments) --blame "CollectHangDump;TestTimeout=6m" + + + + \ No newline at end of file diff --git a/src/Razor/Microsoft.NET.Sdk.Razor/integrationtests/Microsoft.NET.Sdk.Razor.IntegrationTests.csproj b/src/Razor/Microsoft.NET.Sdk.Razor/integrationtests/Microsoft.NET.Sdk.Razor.IntegrationTests.csproj index 88e002ae81a8..a26b2c2cffdf 100644 --- a/src/Razor/Microsoft.NET.Sdk.Razor/integrationtests/Microsoft.NET.Sdk.Razor.IntegrationTests.csproj +++ b/src/Razor/Microsoft.NET.Sdk.Razor/integrationtests/Microsoft.NET.Sdk.Razor.IntegrationTests.csproj @@ -1,4 +1,4 @@ - +