From 127b3899bc6368842ff8533c70f7f67ad9932e71 Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Fri, 24 Oct 2025 18:00:20 -0300 Subject: [PATCH] ci: skip `TestCoderAgent` for now --- internal/agent/agent_test.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/internal/agent/agent_test.go b/internal/agent/agent_test.go index 3719a1150901e621b7998a9f1e7be0a2aa3ef4b8..b0c5716e77b81e82a85dce978ad2240b4284af62 100644 --- a/internal/agent/agent_test.go +++ b/internal/agent/agent_test.go @@ -3,6 +3,7 @@ package agent import ( "os" "path/filepath" + "runtime" "strings" "testing" @@ -45,6 +46,10 @@ func setupAgent(t *testing.T, pair modelPair) (SessionAgent, env) { } func TestCoderAgent(t *testing.T) { + if runtime.GOOS == "windows" { + t.Skip("We're having VCR matching issues on Windows. Skipping for now.") + } + for _, pair := range modelPairs { t.Run(pair.name, func(t *testing.T) { t.Run("simple test", func(t *testing.T) {