diff options
author | Steve Dower <steve.dower@python.org> | 2020-03-07 00:11:47 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-07 00:11:47 +0000 |
commit | 31350f9af09dcff7cf6ff4b0a0a7ea595942372e (patch) | |
tree | a1fc9bf5e55d79fa0ba21d82a19f683eac2536a9 /.azure-pipelines | |
parent | bpo-39882: Py_FatalError() logs the function name (GH-18819) (diff) | |
download | cpython-31350f9af09dcff7cf6ff4b0a0a7ea595942372e.tar.gz cpython-31350f9af09dcff7cf6ff4b0a0a7ea595942372e.tar.bz2 cpython-31350f9af09dcff7cf6ff4b0a0a7ea595942372e.zip |
bpo-39837: Disable macOS tests on Azure Pipelines (GH-18818)
Diffstat (limited to '.azure-pipelines')
-rw-r--r-- | .azure-pipelines/ci.yml | 4 | ||||
-rw-r--r-- | .azure-pipelines/pr.yml | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/.azure-pipelines/ci.yml b/.azure-pipelines/ci.yml index 4c2f115cd9b..6c2c1acc286 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 73d4f55b864..0cc764d025f 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' |