Skip to content

Commit 74caa63

Browse files
committed
Temporarily disable failing test on macOS ARM.
1 parent dc85502 commit 74caa63

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/integration/revert_int_test.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package integration
22

33
import (
44
"fmt"
5+
"runtime"
56
"testing"
67

78
"github.com/ActiveState/cli/internal/constants"
@@ -15,6 +16,9 @@ type RevertIntegrationTestSuite struct {
1516
}
1617

1718
func (suite *RevertIntegrationTestSuite) TestRevert() {
19+
if runtime.GOOS == "darwin" && runtime.GOARCH == "arm64" {
20+
suite.T().Skip("macOS ARM wants to link to system gettext for some reason") // DX-3256
21+
}
1822
suite.OnlyRunForTags(tagsuite.Revert)
1923
ts := e2e.New(suite.T(), false)
2024
defer ts.Close()

0 commit comments

Comments
 (0)