From e46cd723439e838f1513996d82ad5fb40e21b4a3 Mon Sep 17 00:00:00 2001 From: mitchell Date: Mon, 28 Apr 2025 13:57:43 -0400 Subject: [PATCH] Temporarily do not test Fish shell on macOS ARM. --- test/integration/shells_int_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/integration/shells_int_test.go b/test/integration/shells_int_test.go index 45ee8d0942..dfc32c9744 100644 --- a/test/integration/shells_int_test.go +++ b/test/integration/shells_int_test.go @@ -33,6 +33,9 @@ func (suite *ShellsIntegrationTestSuite) TestShells() { shells = []e2e.Shell{e2e.Bash, e2e.Fish, e2e.Tcsh, e2e.Zsh} case "darwin": shells = []e2e.Shell{e2e.Bash, e2e.Fish, e2e.Zsh, e2e.Tcsh} + if runtime.GOARCH == "arm64" { + shells = []e2e.Shell{e2e.Bash, e2e.Zsh, e2e.Tcsh} // DX-3257 + } case "windows": shells = []e2e.Shell{e2e.Bash, e2e.Cmd} }