From 44878522265d9f83e543797d90550582dabee0ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnther=20Foidl?= Date: Tue, 25 Dec 2018 16:51:32 +0100 Subject: [PATCH] Fixed coverlet bug by using specific version Cf. https://github.com/gfoidl/Base64/pull/46#issuecomment-449858836 --- .azure/pipelines/jobs/build_and_test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.azure/pipelines/jobs/build_and_test.yml b/.azure/pipelines/jobs/build_and_test.yml index a2e74d2..085097c 100644 --- a/.azure/pipelines/jobs/build_and_test.yml +++ b/.azure/pipelines/jobs/build_and_test.yml @@ -60,7 +60,8 @@ jobs: dotnet --list-sdks echo "-------------------------------------------------" - dotnet tool install -g coverlet.console + # https://github.com/tonerdo/coverlet/issues/274 + dotnet tool install -g coverlet.console --version 1.3.0 # Workaround # https://github.com/Microsoft/azure-pipelines-tasks/issues/8291#issuecomment-441707116 export PATH="$PATH:$HOME/.dotnet/tools"