[Python-checkins] bpo-39837: Disable macOS tests on Azure Pipelines (GH-18818)

Miss Islington (bot) webhook-mailer at python.org
Fri Mar 6 19:30:14 EST 2020


https://github.com/python/cpython/commit/d692d52f4aaeb6feaabb18f18d49907dd578fbeb
commit: d692d52f4aaeb6feaabb18f18d49907dd578fbeb
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2020-03-06T16:30:09-08:00
summary:

bpo-39837: Disable macOS tests on Azure Pipelines (GH-18818)

(cherry picked from commit 31350f9af09dcff7cf6ff4b0a0a7ea595942372e)

Co-authored-by: Steve Dower <steve.dower at python.org>

files:
M .azure-pipelines/ci.yml
M .azure-pipelines/pr.yml

diff --git a/.azure-pipelines/ci.yml b/.azure-pipelines/ci.yml
index 4c2f115cd9b60..6c2c1acc286c0 100644
--- a/.azure-pipelines/ci.yml
+++ b/.azure-pipelines/ci.yml
@@ -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'
diff --git a/.azure-pipelines/pr.yml b/.azure-pipelines/pr.yml
index 73d4f55b86450..0cc764d025f40 100644
--- a/.azure-pipelines/pr.yml
+++ b/.azure-pipelines/pr.yml
@@ -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'



More information about the Python-checkins mailing list