This commit is contained in:
Matthew Leibowitz 2020-06-25 21:37:02 +02:00
Родитель 84f1f2fe9f
Коммит 3238c9496b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: ECDB25CC0E22FC46
1 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -210,9 +210,13 @@ Task ("tests")
RunProcess ("reportgenerator", new ProcessSettings {
Arguments = "-reports:./tests/**/Coverage/**/*.xml -targetdir:./output/coverage -reporttypes:HtmlInline_AzurePipelines;Cobertura"
});
} catch {
Warning ("Unable to run the code coverage report generator.");
} catch (Exception ex) {
Error ("Make sure to install the 'dotnet-reportgenerator-globaltool' .NET Core global tool.");
Error (ex);
}
var xml = "./output/coverage/Cobertura.xml";
var root = FindRegexMatchGroupsInFile (xml, @"<source>(.*)<\/source>", 0)[1].Value;
ReplaceTextInFiles (xml, root, "");
}
if (failedTests > 0)