mirror of
https://github.com/certbot/certbot.git
synced 2026-08-01 18:56:55 +02:00
* change coverage upload condition * fix typo * set uploadCoverage * add comment * change coverage upload condition * verbose version
19 lines
665 B
YAML
19 lines
665 B
YAML
# We run the test suite on commits to master so codecov gets coverage data
|
|
# about the master branch and can use it to track coverage changes.
|
|
trigger:
|
|
- master
|
|
pr:
|
|
- master
|
|
- '*.x'
|
|
|
|
variables:
|
|
# We set this here to avoid coverage data being uploaded from things like our
|
|
# nightly pipeline. This is done because codecov (helpfully) keeps track of
|
|
# the number of coverage uploads for a commit and displays a warning when
|
|
# comparing two commits with an unequal number of uploads. Only uploading
|
|
# coverage here should keep the number of uploads it sees consistent.
|
|
uploadCoverage: true
|
|
|
|
jobs:
|
|
- template: templates/jobs/standard-tests-jobs.yml
|