From 9d381f0a0931ea582e4d4d1ed9b845d964639a96 Mon Sep 17 00:00:00 2001 From: Futago-za Ryuu Date: Tue, 1 Jan 2019 17:27:22 +0000 Subject: [PATCH] Explicitly tell codeclimate the coverage format --- azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 3c31e89..49a1127 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -36,13 +36,13 @@ steps: if [ $? -eq 0 ] then echo '"yarn ci" passed, publishing to code climate.' - ./cc-test-reporter after-build --exit-code 0 + ./cc-test-reporter after-build --coverage-input-type lcov --exit-code 0 echo 'Publishing code coverage results to coveralls.io' yarn coverage exit 0 else echo '"yarn ci" failed, publishing to code climate.' - ./cc-test-reporter after-build --exit-code 1 + ./cc-test-reporter after-build --coverage-input-type lcov --exit-code 1 exit 1 fi displayName: 'eslint > mocha > codeclimate & coveralls'