ci: skip intermittent test on windows

Andrey Nering created

Change summary

internal/agent/tools/job_test.go | 5 +++++
1 file changed, 5 insertions(+)

Detailed changes

internal/agent/tools/job_test.go 🔗

@@ -2,6 +2,7 @@ package tools
 
 import (
 	"context"
+	"runtime"
 	"testing"
 	"time"
 
@@ -98,6 +99,10 @@ func TestBackgroundShell_MultipleOutputCalls(t *testing.T) {
 func TestBackgroundShell_EmptyOutput(t *testing.T) {
 	t.Parallel()
 
+	if runtime.GOOS == "windows" {
+		t.Skip("This test is flacky on Windows for some reason")
+	}
+
 	workingDir := t.TempDir()
 	ctx := context.Background()