From 81ef6f228d68d81f3db70b80551aace30e2675b9 Mon Sep 17 00:00:00 2001 From: Alexey-Ayupov <116575425+Alexey-Ayupov@users.noreply.github.com> Date: Tue, 14 Nov 2023 11:58:29 +0100 Subject: [PATCH] [macOS] Exclude macOS 13 and 14 from "Stack" test (#8787) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Alexey Ayupov <“alexey.ayupov@akvelon.com”> --- images/macos/tests/Common.Tests.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/macos/tests/Common.Tests.ps1 b/images/macos/tests/Common.Tests.ps1 index 54f1d71da..c7c812aa6 100644 --- a/images/macos/tests/Common.Tests.ps1 +++ b/images/macos/tests/Common.Tests.ps1 @@ -66,7 +66,7 @@ Describe "Miniconda" -Skip:($os.IsVentura -or $os.IsSonoma) { } } -Describe "Stack" -Skip:($os.IsVenturaArm64 -or $os.IsSonomaArm64) { +Describe "Stack" -Skip:($os.IsVentura -or $os.IsSonoma) { It "Stack" { "stack --version" | Should -ReturnZeroExitCode }