Skip to content

Commit d692d52

Browse files
bpo-39837: Disable macOS tests on Azure Pipelines (GH-18818)
(cherry picked from commit 31350f9) Co-authored-by: Steve Dower <[email protected]>
1 parent 6df0c47 commit d692d52

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.azure-pipelines/ci.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ jobs:
3535
- job: macOS_CI_Tests
3636
displayName: macOS CI Tests
3737
dependsOn: Prebuild
38-
condition: and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true'))
38+
#condition: and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true'))
39+
# bpo-39837: macOS tests on Azure Pipelines are disabled
40+
condition: false
3941

4042
variables:
4143
testRunTitle: '$(build.sourceBranchName)-macos'

.azure-pipelines/pr.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ jobs:
3333
- job: macOS_PR_Tests
3434
displayName: macOS PR Tests
3535
dependsOn: Prebuild
36-
condition: and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true'))
36+
#condition: and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true'))
37+
# bpo-39837: macOS tests on Azure Pipelines are disabled
38+
condition: false
3739

3840
variables:
3941
testRunTitle: '$(system.pullRequest.TargetBranch)-macos'

0 commit comments

Comments
 (0)