From 2f52fc4db84317b2b213d8ee31d22076927e2a50 Mon Sep 17 00:00:00 2001 From: mitchell Date: Mon, 22 Jan 2024 10:57:11 -0500 Subject: [PATCH] Skip test that builds a language on macOS. --- test/integration/init_int_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/integration/init_int_test.go b/test/integration/init_int_test.go index a58e0afb83..488bab5377 100644 --- a/test/integration/init_int_test.go +++ b/test/integration/init_int_test.go @@ -154,6 +154,10 @@ func (suite *InitIntegrationTestSuite) TestInit_AlreadyExists() { func (suite *InitIntegrationTestSuite) TestInit_Resolved() { suite.OnlyRunForTags(tagsuite.Init) + if runtime.GOOS == "darwin" { + suite.T().Skip("Skipping mac for now as the builds are still too unreliable") + return + } ts := e2e.New(suite.T(), false) defer ts.Close() ts.LoginAsPersistentUser()