From 6c9976f6d8d21c553c4e498dc01e7e62d5cbfbcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20K=C3=B6plinger?= Date: Wed, 13 Oct 2021 19:37:18 +0200 Subject: [PATCH] Remove FlakyAppHostTests category in installer tests The underlying issue was fixed: https://github.com/dotnet/runtime/issues/53587 --- eng/pipelines/runtime-staging.yml | 16 ---------------- src/installer/tests/Directory.Build.props | 2 -- .../BundleExtractToSpecificPath.cs | 1 - .../AppHost.Bundle.Tests/SingleFileApiTests.cs | 1 - 4 files changed, 20 deletions(-) diff --git a/eng/pipelines/runtime-staging.yml b/eng/pipelines/runtime-staging.yml index 49fd3cdecb98d..8bd61ad8479c2 100644 --- a/eng/pipelines/runtime-staging.yml +++ b/eng/pipelines/runtime-staging.yml @@ -432,22 +432,6 @@ jobs: # creator: dotnet-bot # testRunNamePrefixSuffix: Mono_$(_BuildConfig) -# Run disabled installer tests on Linux x64 -- template: /eng/pipelines/common/platform-matrix.yml - parameters: - jobTemplate: /eng/pipelines/common/global-build-job.yml - buildConfig: Release - platforms: - - Linux_x64 - jobParameters: - nameSuffix: Installer_Tests - isOfficialBuild: ${{ variables.isOfficialBuild }} - buildArgs: -s clr+libs+host+packs -restore -build -test -c $(_BuildConfig) -lc Debug /p:PortableBuild=true /p:RunOnStaging=true - useContinueOnErrorDuringBuild: true - enablePublisTestResults: true - testResultsFormat: xunit - timeoutInMinutes: 90 - # # Build Browser_wasm, on windows, run console and browser tests # diff --git a/src/installer/tests/Directory.Build.props b/src/installer/tests/Directory.Build.props index 9f13bf1a39335..5ed2e7919d1ae 100644 --- a/src/installer/tests/Directory.Build.props +++ b/src/installer/tests/Directory.Build.props @@ -11,8 +11,6 @@ $(TargetArchitecture) $(NetCoreAppToolCurrent) -notrait category=failing - $(TestRunnerAdditionalArguments) -notrait category=FlakyAppHostTests - $(TestRunnerAdditionalArguments) -trait category=FlakyAppHostTests false diff --git a/src/installer/tests/Microsoft.NET.HostModel.Tests/AppHost.Bundle.Tests/BundleExtractToSpecificPath.cs b/src/installer/tests/Microsoft.NET.HostModel.Tests/AppHost.Bundle.Tests/BundleExtractToSpecificPath.cs index a222dcb9750ed..8c3b8a4ee4460 100644 --- a/src/installer/tests/Microsoft.NET.HostModel.Tests/AppHost.Bundle.Tests/BundleExtractToSpecificPath.cs +++ b/src/installer/tests/Microsoft.NET.HostModel.Tests/AppHost.Bundle.Tests/BundleExtractToSpecificPath.cs @@ -15,7 +15,6 @@ namespace AppHost.Bundle.Tests { - [Trait("category", "FlakyAppHostTests")] public class BundleExtractToSpecificPath : BundleTestBase, IClassFixture { private SharedTestState sharedTestState; diff --git a/src/installer/tests/Microsoft.NET.HostModel.Tests/AppHost.Bundle.Tests/SingleFileApiTests.cs b/src/installer/tests/Microsoft.NET.HostModel.Tests/AppHost.Bundle.Tests/SingleFileApiTests.cs index 07df3a577e849..22a2055982762 100644 --- a/src/installer/tests/Microsoft.NET.HostModel.Tests/AppHost.Bundle.Tests/SingleFileApiTests.cs +++ b/src/installer/tests/Microsoft.NET.HostModel.Tests/AppHost.Bundle.Tests/SingleFileApiTests.cs @@ -8,7 +8,6 @@ namespace AppHost.Bundle.Tests { - [Trait("category", "FlakyAppHostTests")] public class SingleFileApiTests : BundleTestBase, IClassFixture { private SingleFileSharedState sharedTestState;