From c17e9b2df7e10ae60af2b642172fe7fd2f7c589d Mon Sep 17 00:00:00 2001 From: Futago-za Ryuu Date: Wed, 2 Jan 2019 16:11:51 +0000 Subject: [PATCH] Removed '--coverage-input-type lcov -d' --- azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 5dbc833..3c31e89 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 --coverage-input-type lcov -d --exit-code 0 + ./cc-test-reporter after-build --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 --coverage-input-type lcov -d --exit-code 1 + ./cc-test-reporter after-build --exit-code 1 exit 1 fi displayName: 'eslint > mocha > codeclimate & coveralls'