[macOS] Get rid of unused software in macOS 13 (#9187)

This commit is contained in:
Alexey-Ayupov
2024-01-18 10:41:59 +01:00
committed by GitHub
parent 192a94d178
commit 76ad0eb3d6
6 changed files with 17 additions and 15 deletions

View File

@@ -123,7 +123,7 @@ Describe "Aliyun CLI" -Skip:($os.IsMonterey -or $os.IsVentura -or $os.IsSonoma)
}
}
Describe "Julia" {
Describe "Julia" -Skip:($os.IsVentura -or $os.IsSonoma) {
It "Julia" {
"julia --version" | Should -ReturnZeroExitCode
}
@@ -159,7 +159,7 @@ Describe "virtualbox" -Skip:($os.IsBigSur -or $os.IsVentura -or $os.IsSonoma) {
}
}
Describe "R" {
Describe "R" -Skip:($os.IsVentura -or $os.IsSonoma) {
It "R" {
"R --version" | Should -ReturnZeroExitCode
}

View File

@@ -32,7 +32,7 @@ Describe "Fastlane" {
}
}
Describe "xcpretty" {
Describe "xcpretty" -Skip:($os.IsVentura -or $os.IsSonoma) {
It "xcpretty" {
"xcpretty --version" | Should -ReturnZeroExitCode
}

View File

@@ -2,7 +2,7 @@ Import-Module "$PSScriptRoot/../helpers/Common.Helpers.psm1"
$os = Get-OSVersion
Describe "Apache" -Skip:($os.IsVenturaArm64 -or $os.IsSonomaArm64) {
Describe "Apache" -Skip:($os.IsVentura -or $os.IsSonoma) {
It "Apache CLI" {
"httpd -v" | Should -ReturnZeroExitCode
}