From d17f3d36c2e7712f67cceb8b73ebce5899bbb3d6 Mon Sep 17 00:00:00 2001 From: Sajith Sasidharan Date: Wed, 31 Mar 2021 17:57:44 -0400 Subject: [PATCH] Run coveralls verbosely --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dcbab9461..4c12c7f7f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -117,7 +117,7 @@ jobs: - name: "Report Coverage to Coveralls" run: | pip3 install --upgrade coveralls==3.0.1 - python3 -m coveralls + python3 -m coveralls --verbose env: # Some magic value required for some magic reason. GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" @@ -152,7 +152,7 @@ jobs: - name: "Indicate completion to coveralls.io" run: | pip3 install --upgrade coveralls==3.0.1 - python3 -m coveralls --finish + python3 -m coveralls --verbose --finish env: # Some magic value required for some magic reason. GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"