chore: skipping agent tests on windows temporarily

Andrey Nering created

Change summary

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

Detailed changes

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