Skip to content

Commit f4c2f73

Browse files
committed
Merge branch version/0-48-0-RC1 to adopt changes from PR #3678
2 parents 2937d8d + f417915 commit f4c2f73

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

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)