Skip to content

Commit

Permalink
Run integration tests on .NET 4.6.2 (#574)
Browse files Browse the repository at this point in the history
  • Loading branch information
pellared authored Apr 21, 2022
1 parent 8ec1d72 commit b1c92f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 2 additions & 1 deletion build/nuke/Build.Steps.cs
Original file line number Diff line number Diff line change
Expand Up @@ -305,14 +305,15 @@ partial class Build
Project[] integrationTests = Solution.GetCrossPlatformIntegrationTests();

string filter = IsWin ? null : "WindowsOnly!=true";
IEnumerable<TargetFramework> frameworks = IsWin ? TestFrameworks : TestFrameworks.ExceptNetFramework();

DotNetTest(config => config
.SetConfiguration(BuildConfiguration)
.SetTargetPlatform(Platform)
.EnableNoRestore()
.EnableNoBuild()
.SetFilter(filter)
.CombineWith(TestFrameworks.ExceptNetFramework(), (s, fx) => s
.CombineWith(frameworks, (s, fx) => s
.SetFramework(fx)
)
.CombineWith(integrationTests, (s, project) => s
Expand Down
2 changes: 0 additions & 2 deletions docs/releasing.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down

0 comments on commit b1c92f9

Please sign in to comment.