[macOS] Workaround issue with Xamarin Pester tests discovery (#10633)

This commit is contained in:
Erik Bershel
2024-09-17 17:55:00 +02:00
committed by GitHub
parent ce2a3e8e67
commit 370d12f1b6

View File

@@ -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 {