diff --git a/internal/agent/agent_test.go b/internal/agent/agent_test.go index 84a09e81a180c8b50cfeece85bf337fd65ff3dd6..0682083ae20daaa1c17747afdfd6b4db358b88fa 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("skipping on windows for now") + } + for _, pair := range modelPairs { t.Run(pair.name, func(t *testing.T) { t.Run("simple test", func(t *testing.T) {