Browse Source
bpo-39837: Disable macOS tests on Azure Pipelines (GH-18818)
pull/18822/head
Steve Dower
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
6 additions and
2 deletions
-
.azure-pipelines/ci.yml
-
.azure-pipelines/pr.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' |
|
|
|
|
|
|
|
@ -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' |
|
|
|
|