From 02946c29531ae6e1d57773cd35be6f7e084af9cd Mon Sep 17 00:00:00 2001 From: Robbe Sneyders Date: Tue, 2 May 2023 11:41:27 +0200 Subject: [PATCH] Install coveralls in github actions --- .github/workflows/pipeline.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pipeline.yaml b/.github/workflows/pipeline.yaml index 7fee7928a..f7d4b061e 100644 --- a/.github/workflows/pipeline.yaml +++ b/.github/workflows/pipeline.yaml @@ -39,7 +39,9 @@ jobs: run: | poetry run pytest tests --cov connexion --cov-report term-missing - name: Coveralls - run: coveralls --service github + run: | + pip install "coveralls<4" + coveralls --service github env: COVERALLS_PARALLEL: true GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}