From 294b0aa1e35ad48e22fc0a93ca60787714347ee1 Mon Sep 17 00:00:00 2001 From: Filippo Valsorda Date: Sun, 6 Aug 2023 19:03:27 +0200 Subject: [PATCH] plugin: skip execution tests on Windows for now --- plugin/client_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugin/client_test.go b/plugin/client_test.go index c4cad60..fc28789 100644 --- a/plugin/client_test.go +++ b/plugin/client_test.go @@ -11,6 +11,7 @@ import ( "io" "os" "path/filepath" + "runtime" "testing" "filippo.io/age" @@ -77,6 +78,9 @@ func TestMain(m *testing.M) { } func TestLabels(t *testing.T) { + if runtime.GOOS == "windows" { + t.Skip("Windows support is TODO") + } temp := t.TempDir() testOnlyPluginPath = temp t.Cleanup(func() { testOnlyPluginPath = "" })