From 370d12f1b66fe7235a8d2a16b094e1639cb54b9e Mon Sep 17 00:00:00 2001 From: Erik Bershel <110455084+erik-bershel@users.noreply.github.com> Date: Tue, 17 Sep 2024 17:55:00 +0200 Subject: [PATCH] [macOS] Workaround issue with Xamarin Pester tests discovery (#10633) --- images/macos/scripts/tests/Xamarin.Tests.ps1 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/images/macos/scripts/tests/Xamarin.Tests.ps1 b/images/macos/scripts/tests/Xamarin.Tests.ps1 index 3b808fd03..a09f87f13 100644 --- a/images/macos/scripts/tests/Xamarin.Tests.ps1 +++ b/images/macos/scripts/tests/Xamarin.Tests.ps1 @@ -15,6 +15,11 @@ if ($os.IsVentura -or $os.IsSonoma) { $XAMARIN_ANDROID_VERSIONS = (Get-ToolsetContent).xamarin.android_versions } elseif ($os.IsSequoia) { Write-Host "Skipping all the Mono and Xamarin tests as deprecated" + # Dummy workaround for the issue with the tests discovery + $MONO_VERSIONS = @() + $XAMARIN_IOS_VERSIONS = @() + $XAMARIN_MAC_VERSIONS = @() + $XAMARIN_ANDROID_VERSIONS = @() } BeforeAll {