Browse Source

Add Azure DevOps code coverage config file (#3195)

* User Story 34103: [S360] dotnet-sqlclient repository is not meeting Differential Dode Coverage standard, classified as Bucket 2: CodeCoverage data present, missing config file

- Added Azure DevOps code coverage config file to the repo root.

* User Story 34103: [S360] dotnet-sqlclient repository is not meeting Differential Dode Coverage standard, classified as Bucket 2: CodeCoverage data present, missing config file

- Sett minimum differential code coverage threshold to 70%.
pull/3202/head
Paul Medynski 5 months ago
committed by GitHub
parent
commit
0a77b643b8
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 16
      azurepipelines-coverage.yml

16
azurepipelines-coverage.yml

@ -0,0 +1,16 @@
# Azure DevOps code coverage settings:
#
# https://learn.microsoft.com/en-us/azure/devops/pipelines/test/codecoverage-for-pullrequests?view=azure-devops#configuring-coverage-settings
#
coverage:
# Code coverage status will be posted to pull requests based on targets
# defined below.
status:
# Off by default. When on, details about coverage for each file changed will
# be posted as a pull request comment.
comments: on
# Diff coverage is code coverage only for the lines changed in a pull
# request.
diff:
# Set this to a desired %. Default is 70%.
target: 70%
Loading…
Cancel
Save