From 0974afd26dd0985a9d4cd7d8b0d19490747b486c Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Sat, 21 Aug 2021 12:06:45 -0400 Subject: [PATCH] guess coverralls service --- .github/workflows/main.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 22cba5bef..ee502c484 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -68,7 +68,7 @@ jobs: COVERALLS_PARALLEL: true run: | pip install coveralls - coveralls --service=github + coveralls -v tests-integration: name: "tests / integration" @@ -108,7 +108,8 @@ jobs: - run: tox -e ${{ matrix.test }} coverage: - needs: ["tests-unit", "tests-integration"] + #needs: ["tests-unit", "tests-integration"] + needs: ["tests-unit"] runs-on: ubuntu-latest steps: - name: finalize coverage report submission @@ -116,7 +117,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.github_token }} run: | pip install coveralls - coveralls --service=github --finish + coveralls -v --finish build: needs: ["lint", "tests-unit", "tests-integration"]