Skip to content

Commit

Permalink
disabling test parallelization in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy D. Miller authored and jeremydmiller committed Feb 11, 2022
1 parent b4fbcbb commit f16f30c
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build/build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ private static void Main(string[] args)

var disableTestParallelization = GetEnvironmentVariable("disable_test_parallelization");

Target("ci", DependsOn("connection", "default"));
Target("ci", DependsOn("setup-test-parallelization", "connection", "default"));

Target("default", DependsOn("mocha", "test"));

Expand Down Expand Up @@ -177,7 +177,8 @@ private static void Main(string[] args)
"src/Marten.Testing",
"src/Marten.NodaTime.Testing",
"src/EventSourcingTests",
"src/DocumentDbTests"
"src/DocumentDbTests",
"src/CoreTests",
};

foreach (var item in test_projects)
Expand Down
18 changes: 18 additions & 0 deletions src/DocumentDbTests/DocumentDbTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,24 @@
<Compile Include="..\Marten.Testing\SchemaMigrationExtensions.cs">
<Link>SchemaMigrationExtensions.cs</Link>
</Compile>
<Compile Remove="Internal\Generated\DocumentStorage\TaskProvider74835621.cs" />
<Compile Remove="Internal\Generated\DocumentStorage\RouteDetailsProvider784762106.cs" />
<Compile Remove="Internal\Generated\DocumentStorage\RootProvider493946136.cs" />
<Compile Remove="Internal\Generated\DocumentStorage\MyClassProvider52903863.cs" />
<Compile Remove="Internal\Generated\DocumentStorage\DocWithUintProvider1372666391.cs" />
<Compile Remove="Internal\Generated\DocumentStorage\DocWithArraysProvider1391541541.cs" />
<Compile Remove="Internal\Generated\DocumentStorage\CarProvider343829114.cs" />
<Compile Remove="Internal\Generated\CompiledQueries\QueryOnlyWhereUsernameStartsWithCompiledQuerySource2116019653.cs" />
<Compile Remove="Internal\Generated\CompiledQueries\QueryOnlyWhereUsernameEndsWithCompiledQuerySource628653900.cs" />
<Compile Remove="Internal\Generated\CompiledQueries\QueryOnlyWhereUsernameContainsCompiledQuerySource893470325.cs" />
<Compile Remove="Internal\Generated\CompiledQueries\QueryOnlyIssueWithUsersCompiledQuerySource272805147.cs" />
<Compile Remove="Internal\Generated\CompiledQueries\QueryOnlyIssueWithUsersAndParamCompiledQuerySource813614947.cs" />
<Compile Remove="Internal\Generated\CompiledQueries\QueryOnlyFunnyTargetQueryCompiledQuerySource1643467126.cs" />
<Compile Remove="Internal\Generated\CompiledQueries\QueryOnlyCompiledNestedQueryCompiledQuerySource970855369.cs" />
</ItemGroup>

<ItemGroup>
<Folder Include="Internal\Generated\EventStore" />
</ItemGroup>

<PropertyGroup>
Expand Down

0 comments on commit f16f30c

Please sign in to comment.