diff options
author | Hugo van Kemenade <hugovk@users.noreply.github.com> | 2023-09-15 05:27:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-15 05:27:47 (GMT) |
commit | fa493900fbf19cbfac44164f3d8acb4f598ff3c1 (patch) | |
tree | 2e767d53a05e87a271bc120a45e3c1c0f6372177 /.azure-pipelines/ci.yml | |
parent | 74c72a2fc73941394839bd912c4814398b461446 (diff) | |
download | cpython-fa493900fbf19cbfac44164f3d8acb4f598ff3c1.zip cpython-fa493900fbf19cbfac44164f3d8acb4f598ff3c1.tar.gz cpython-fa493900fbf19cbfac44164f3d8acb4f598ff3c1.tar.bz2 |
gh-109395: Remove skipped coverage job from Azure Pipelines (#109412)
Diffstat (limited to '.azure-pipelines/ci.yml')
-rw-r--r-- | .azure-pipelines/ci.yml | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/.azure-pipelines/ci.yml b/.azure-pipelines/ci.yml index 63252a7..ad1576a 100644 --- a/.azure-pipelines/ci.yml +++ b/.azure-pipelines/ci.yml @@ -1,6 +1,3 @@ -variables: - coverage: false - trigger: ['main', '3.11', '3.10', '3.9', '3.8', '3.7'] jobs: @@ -51,33 +48,6 @@ jobs: dependencies: apt -- job: Ubuntu_Coverage_CI_Tests - displayName: Ubuntu CI Tests (coverage) - dependsOn: Prebuild - condition: | - and( - and( - succeeded(), - eq(variables['coverage'], 'true') - ), - eq(dependencies.Prebuild.outputs['tests.run'], 'true') - ) - - pool: - vmImage: ubuntu-22.04 - - variables: - testRunTitle: '$(Build.SourceBranchName)-linux-coverage' - testRunPlatform: linux-coverage - openssl_version: 1.1.1u - - steps: - - template: ./posix-steps.yml - parameters: - dependencies: apt - coverage: true - - - job: Windows_CI_Tests displayName: Windows CI Tests dependsOn: Prebuild |