Skip to content

Commit f417915

Browse files
authored
Merge pull request #3678 from ActiveState/mitchell/dx-3254
Temporarily disable failing test on macOS ARM.
2 parents 18814f7 + 74caa63 commit f417915

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)