From 40d5c90ef6cf3a577e81e2b82de548b7ebc3b897 Mon Sep 17 00:00:00 2001 From: Hynek Schlawack Date: Sun, 2 Jun 2019 09:27:57 +0200 Subject: [PATCH] Use the same version of coverage for combine 3.7's coverage can't find 2.7's coverage data. --- azure-pipelines.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 743c3f25..5ad92cc5 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -84,7 +84,8 @@ jobs: displayName: run tox -e $(tox.env) - script: | - $(pyTools.pythonLocation)/bin/coverage combine + python -m pip install coverage + coverage combine $(pyTools.pythonLocation)/bin/codecov env: CODECOV_TOKEN: $(codecov.token)