Skip to content

Commit e687b3c

Browse files
committed
Skip TestMCPLoad on Windows
Signed-off-by: Donnie Adams <[email protected]>
1 parent 1a17136 commit e687b3c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pkg/tests/runner2_test.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package tests
33
import (
44
"context"
55
"encoding/json"
6+
"runtime"
67
"testing"
78

89
"github.com/gptscript-ai/gptscript/pkg/loader"
@@ -206,6 +207,10 @@ echo "${GPTSCRIPT_INPUT}"
206207
}
207208

208209
func TestMCPLoad(t *testing.T) {
210+
if runtime.GOOS == "windows" {
211+
t.Skip("Skipping test on Windows")
212+
}
213+
209214
r := tester.NewRunner(t)
210215
prg, err := loader.ProgramFromSource(context.Background(), `
211216
name: mcp

0 commit comments

Comments
 (0)