From 6dc866b1949973ac3649737545509b386957fedc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20L=C3=A9one?= Date: Wed, 7 Aug 2024 11:48:19 +0200 Subject: [PATCH] test(container): skip Test_Deploy on windows (#4034) --- internal/namespaces/container/v1beta1/custom_deploy_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/internal/namespaces/container/v1beta1/custom_deploy_test.go b/internal/namespaces/container/v1beta1/custom_deploy_test.go index cd7686e611..23186defb9 100644 --- a/internal/namespaces/container/v1beta1/custom_deploy_test.go +++ b/internal/namespaces/container/v1beta1/custom_deploy_test.go @@ -2,6 +2,7 @@ package container_test import ( _ "embed" + "runtime" container "github.com/scaleway/scaleway-cli/v2/internal/namespaces/container/v1beta1" @@ -54,6 +55,9 @@ func mkdirAllBeforeFunc(path string) func(ctx *core.BeforeFuncCtx) error { } func Test_Deploy(t *testing.T) { + if runtime.GOOS == "windows" { + t.Skip("Skipping test on Windows because of flakyness") + } appName := "cli-t-ctnr-deploy" path := t.TempDir()