From 577c73ee80b83870175c66467c330d2695a8e9f7 Mon Sep 17 00:00:00 2001 From: Salman Chishti Date: Mon, 28 Jul 2025 12:34:13 +0000 Subject: [PATCH] don't skip on windows --- src/Test/L0/Listener/ShellScriptSyntaxL0.cs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/Test/L0/Listener/ShellScriptSyntaxL0.cs b/src/Test/L0/Listener/ShellScriptSyntaxL0.cs index 87b525db2..177b4de0e 100644 --- a/src/Test/L0/Listener/ShellScriptSyntaxL0.cs +++ b/src/Test/L0/Listener/ShellScriptSyntaxL0.cs @@ -189,12 +189,6 @@ namespace GitHub.Runner.Common.Tests.Listener // Add debugging info Console.WriteLine($"Running on platform: {RuntimeInformation.OSDescription}, Architecture: {RuntimeInformation.OSArchitecture}"); - // Skip on Windows - if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) - { - return; - } - try { using (var hc = new TestHostContext(this))