From b39718ddd7770ec1502e5022d6007fb4db1f4bad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=B0smail?= Date: Tue, 5 Nov 2024 09:40:12 +0300 Subject: [PATCH] Skip Test --- management/server/management_proto_test.go | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/management/server/management_proto_test.go b/management/server/management_proto_test.go index dc8765e19..3eaf50980 100644 --- a/management/server/management_proto_test.go +++ b/management/server/management_proto_test.go @@ -472,8 +472,14 @@ func createRawClient(addr string) (mgmtProto.ManagementServiceClient, *grpc.Clie func Test_SyncStatusRace(t *testing.T) { t.Skip() - if os.Getenv("CI") == "true" && os.Getenv("NETBIRD_STORE_ENGINE") == "postgres" { - t.Skip("Skipping on CI and Postgres store") + if os.Getenv("CI") == "true" { + if os.Getenv("NETBIRD_STORE_ENGINE") == "postgres" { + t.Skip("Skipping on CI and Postgres store") + } + + if os.Getenv("NETBIRD_STORE_ENGINE") == "mysql" { + t.Skip("Skipping on CI and MySQL store") + } } for i := 0; i < 500; i++ { t.Run(fmt.Sprintf("TestRun-%d", i), func(t *testing.T) {