From b8af312ab1e0547ed0aa1787749032e9fa2343c5 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Fri, 10 Jul 2020 18:39:16 +0200 Subject: [PATCH] ci: fix artifacts being downloaded into wrong directory --- azure-pipelines.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e1a3a2fbc..8e1d66b31 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -208,10 +208,12 @@ stages: inputs: buildType: 'current' artifactName: 'coverage-e2e' + path: "coverage-e2e/" - task: DownloadPipelineArtifact@2 inputs: buildType: 'current' artifactName: 'coverage-unittest' + path: "coverage-unittest/" - task: UsePythonVersion@0 inputs: versionSpec: '3.8' @@ -220,6 +222,7 @@ stages: script: | sudo pip install -U wheel pipenv pipenv install --dev + find . pipenv run coverage combine coverage-e2e/coverage coverage-unittest/coverage pipenv run coverage xml pipenv run coverage html