From 87372eff3ed1da080b97e1a7932e4e39ab39bf65 Mon Sep 17 00:00:00 2001 From: Ville Penttinen Date: Tue, 19 Dec 2023 06:11:48 +0100 Subject: [PATCH] Run only UnitTests in CI --- build/Build.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/Build.cs b/build/Build.cs index 49ee835..8e270a2 100644 --- a/build/Build.cs +++ b/build/Build.cs @@ -62,9 +62,9 @@ public T From() public IEnumerable 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 TestProjects => - IsServerBuild && (IsMacOs || IsWindows) ? UnitTests : UnitTests.Concat(ExecutionTests); + IsServerBuild ? UnitTests : UnitTests.Concat(ExecutionTests); bool IUseCsharpier.UseGlobalTool => false; bool IUseFantomas.UseGlobalTool => false;