We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc85502 commit 74caa63Copy full SHA for 74caa63
test/integration/revert_int_test.go
@@ -2,6 +2,7 @@ package integration
2
3
import (
4
"fmt"
5
+ "runtime"
6
"testing"
7
8
"github.com/ActiveState/cli/internal/constants"
@@ -15,6 +16,9 @@ type RevertIntegrationTestSuite struct {
15
16
}
17
18
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
+ }
22
suite.OnlyRunForTags(tagsuite.Revert)
23
ts := e2e.New(suite.T(), false)
24
defer ts.Close()
0 commit comments