Skip to content

Commit

Permalink
Merge pull request #3038 from ActiveState/mitchell/dx-2465
Browse files Browse the repository at this point in the history
Skip test that builds a language on macOS.
  • Loading branch information
mitchell-as authored Jan 22, 2024
2 parents 121379f + 2f52fc4 commit f1792b3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/integration/init_int_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit f1792b3

Please sign in to comment.