From e116290010dcc84e008dcdd7faef259866f04f12 Mon Sep 17 00:00:00 2001 From: Aaron Powell Date: Mon, 22 Jul 2019 14:53:47 +1000 Subject: [PATCH] adding unique name for coverage --- .azure-pipelines/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.azure-pipelines/test.yml b/.azure-pipelines/test.yml index a6896b6..80d4e1c 100755 --- a/.azure-pipelines/test.yml +++ b/.azure-pipelines/test.yml @@ -20,7 +20,7 @@ steps: displayName: 'Publish Test Results' inputs: testResultsFiles: 'out-cov/*-results.xml' - testRunTitle: '$(Agent.OS)' + testRunTitle: '$(Agent.OS)-$(node_version)' condition: succeededOrFailed() - task: PublishCodeCoverageResults@1 @@ -39,4 +39,4 @@ steps: displayName: 'Publish Coverage Artifact' inputs: targetPath: $(Build.ArtifactStagingDirectory) - artifactName: coverage + artifactName: 'coverage-$(Agent.OS)-$(node_version)'