Skip to content

Commit

Permalink
Don't rebuild for ci tests and only run one worker in parallel to pre…
Browse files Browse the repository at this point in the history
…vent collisions.
  • Loading branch information
sqeezy committed Sep 23, 2024
1 parent e1a6d49 commit 553db4f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.proj
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@
</Target>

<Target Name="unittests" DependsOnTargets="solution">
<Exec Command="dotnet test source\fitSharpTest\fitSharpTest.csproj" />
<Exec Command="dotnet test source\fitTest\fitTest.csproj" />
<Exec Command="dotnet test --no-build -m:1 source\fitSharpTest\fitSharpTest.csproj" />
<Exec Command="dotnet test --no-build -m:1 source\fitTest\fitTest.csproj" />
</Target>

<Target Name="storytests" DependsOnTargets="solution">
<Exec Command="dotnet test source\StoryTest\StoryTest.csproj" />
<Exec Command="dotnet test --no-build -m:1 source\StoryTest\StoryTest.csproj" />
</Target>

<Target Name="package">
Expand Down

0 comments on commit 553db4f

Please sign in to comment.