Skip to content

Commit

Permalink
added the value type tests to the CI build. Closes GH-2487
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremydmiller committed Jun 18, 2024
1 parent 34a8289 commit 3d0b754
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion build/build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,13 @@ private static async Task Main(string[] args)
Target("test-linq", DependsOn("compile-linq-tests"), () =>
RunTests("LinqTests"));

Target("compile-value-types-tests", DependsOn("clean"), () =>
Run("dotnet", $"build src/ValueTypeTests/ValueTypeTests.csproj --framework {_framework} --configuration {configuration}"));


Target("test-value-types", DependsOn("compile-linq-tests"), () =>
RunTests("ValueTypeTests"));

Target("compile-multi-tenancy-tests", DependsOn("clean"), () =>
Run("dotnet", $"build src/MultiTenancyTests/MultiTenancyTests.csproj --framework {_framework} --configuration {configuration}"));

Expand Down Expand Up @@ -130,7 +137,7 @@ private static async Task Main(string[] args)
Target("test-plv8", DependsOn("compile", "compile-plv8"), () =>
RunTests("Marten.PLv8.Testing"));

Target("test", DependsOn("test-base-lib", "test-core", "test-document-db", "test-event-sourcing", "test-cli", "test-linq", "test-codegen", "test-patching"));
Target("test", DependsOn("test-base-lib", "test-core", "test-document-db", "test-event-sourcing", "test-cli", "test-linq", "test-codegen", "test-patching", "test-value-types"));

Target("test-extension-libs-without-plv8", DependsOn("test-noda-time", "test-aspnetcore"));

Expand Down

0 comments on commit 3d0b754

Please sign in to comment.