From b1c92f968aa33ce570e20192d8ed91a51d1a374b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Paj=C4=85k?= Date: Thu, 21 Apr 2022 22:47:58 +0200 Subject: [PATCH] Run integration tests on .NET 4.6.2 (#574) --- build/nuke/Build.Steps.cs | 3 ++- docs/releasing.md | 2 -- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/build/nuke/Build.Steps.cs b/build/nuke/Build.Steps.cs index 5c7fbd4c6f..9ba0b5d98d 100644 --- a/build/nuke/Build.Steps.cs +++ b/build/nuke/Build.Steps.cs @@ -305,6 +305,7 @@ partial class Build Project[] integrationTests = Solution.GetCrossPlatformIntegrationTests(); string filter = IsWin ? null : "WindowsOnly!=true"; + IEnumerable frameworks = IsWin ? TestFrameworks : TestFrameworks.ExceptNetFramework(); DotNetTest(config => config .SetConfiguration(BuildConfiguration) @@ -312,7 +313,7 @@ partial class Build .EnableNoRestore() .EnableNoBuild() .SetFilter(filter) - .CombineWith(TestFrameworks.ExceptNetFramework(), (s, fx) => s + .CombineWith(frameworks, (s, fx) => s .SetFramework(fx) ) .CombineWith(integrationTests, (s, project) => s diff --git a/docs/releasing.md b/docs/releasing.md index fc711e67d8..47023154de 100644 --- a/docs/releasing.md +++ b/docs/releasing.md @@ -1,7 +1,5 @@ # Release Process -0. Run tests on .NET 4.6.2 locally: they do not run in GitHub. - 1. Update the version in the following files: - `*.cs` (TODO: extract as a constant to reduce the number of occurances)