From 1ac0e0e2170dc6d928818a5d7e69aba248dd0f6e Mon Sep 17 00:00:00 2001 From: Zain Budhwani <99770260+zbud-msft@users.noreply.github.com> Date: Tue, 14 Jun 2022 14:48:34 -0700 Subject: [PATCH] Change diff cover check threshold from 50 to 80 (#108) Why I did it Requirement is to have code diff coverage be at 80% How I did it Change code diff coverage threshold to 80% in azure-pipelines yml file How to verify it Check azure-pipelines yml file --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 6308eb98..dcccd762 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -31,7 +31,7 @@ stages: vmImage: ubuntu-20.04 variables: - DIFF_COVER_CHECK_THRESHOLD: 50 + DIFF_COVER_CHECK_THRESHOLD: 80 DIFF_COVER_ENABLE: 'true' DIFF_COVER_WORKING_DIRECTORY: $(System.DefaultWorkingDirectory)/sonic-telemetry