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) {