From e86e8c5d5483413d0a11120ecea83b581700871d Mon Sep 17 00:00:00 2001 From: joshmc Date: Mon, 19 Oct 2020 19:27:38 +0100 Subject: [PATCH] NOISSUE - Update pipeline to use cobertura --- .gitignore | 1 + azure-pipelines.yml | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/.gitignore b/.gitignore index 36dbb72a..cd5597e6 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ .DS_Store .vscode/ .idea/ +cobertura.xml diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 42e4524d..88213dd9 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -44,3 +44,10 @@ steps: cargo tarpaulin displayName: Cargo tarpaulin condition: eq(variables['Agent.OS'], 'Linux') + + # Linux + - task: + inputs: + codeCoverageTool: Cobertura + summaryFileLocation: cobertura.xml + condition: eq(variables['Agent.OS'], 'Linux')