]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-39837: Disable macOS tests on Azure Pipelines (GH-18818)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sat, 7 Mar 2020 00:30:09 +0000 (16:30 -0800)
committerGitHub <noreply@github.com>
Sat, 7 Mar 2020 00:30:09 +0000 (16:30 -0800)
(cherry picked from commit 31350f9af09dcff7cf6ff4b0a0a7ea595942372e)

Co-authored-by: Steve Dower <steve.dower@python.org>
.azure-pipelines/ci.yml
.azure-pipelines/pr.yml

index 4c2f115cd9b600407cf3edcada4dd0fb4c082e3b..6c2c1acc286c081062311c48465fb1d19b69d640 100644 (file)
@@ -35,7 +35,9 @@ jobs:
 - job: macOS_CI_Tests
   displayName: macOS CI Tests
   dependsOn: Prebuild
-  condition: and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true'))
+  #condition: and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true'))
+  # bpo-39837: macOS tests on Azure Pipelines are disabled
+  condition: false
 
   variables:
     testRunTitle: '$(build.sourceBranchName)-macos'
index 73d4f55b864500c66d6160e56265a7fef90b6025..0cc764d025f40b358eeb9ebde8e109dafac2f7d1 100644 (file)
@@ -33,7 +33,9 @@ jobs:
 - job: macOS_PR_Tests
   displayName: macOS PR Tests
   dependsOn: Prebuild
-  condition: and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true'))
+  #condition: and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true'))
+  # bpo-39837: macOS tests on Azure Pipelines are disabled
+  condition: false
 
   variables:
     testRunTitle: '$(system.pullRequest.TargetBranch)-macos'