Skip to content

Commit

Permalink
Run only UnitTests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
vipentti committed Dec 19, 2023
1 parent fa690e7 commit 87372ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ public T From<T>()
public IEnumerable<Project> ExecutionTests =>
CurrentSolution.GetAllProjects("*ExecutionTests");

// Run only unit tests in CI on Windows & MacOS beecause execution tests take a while.
// Run only unit tests in CI because execution tests take a while.
public IEnumerable<Project> TestProjects =>
IsServerBuild && (IsMacOs || IsWindows) ? UnitTests : UnitTests.Concat(ExecutionTests);
IsServerBuild ? UnitTests : UnitTests.Concat(ExecutionTests);

bool IUseCsharpier.UseGlobalTool => false;
bool IUseFantomas.UseGlobalTool => false;
Expand Down

0 comments on commit 87372ef

Please sign in to comment.