plugin: skip execution tests on Windows for now

This commit is contained in:
Filippo Valsorda
2023-08-06 19:03:27 +02:00
parent f1f96c25e0
commit 294b0aa1e3

View File

@@ -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 = "" })