From 1e8c66cf8f7b3ec45d87dffdc9aba72bd54ac80f Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Sat, 5 Jun 2021 04:20:15 +0200 Subject: [PATCH] Stop uploading to coveralls This allows significant cleanup as we don't need anymore a post-job and we can drop lcov installation/processing. Codecov is switched back in gcov mode. --- .github/workflows/ci.yml | 27 +-------------------------- 1 file changed, 1 insertion(+), 26 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2900e9e..2b070b3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,9 +43,6 @@ jobs: run: pip install typing if: matrix.installTyping - - name: Install lcov - run: sudo apt install -yy lcov - - name: Build the code run: python ./setup.py build_ext -i @@ -61,17 +58,6 @@ jobs: - name: Test with coverage run: python -m pytest tests - - name: Convert data with lcov - run: lcov --capture --no-external --directory . --output-file coverage.info - - - name: Coveralls Parallel - uses: coverallsapp/github-action@master - with: - github-token: ${{ secrets.github_token }} - flag-name: run-${{ matrix.os }}-${{ matrix.python-version }} - parallel: true - path-to-lcov: coverage.info - - name: Upload coverage to Codecov uses: codecov/codecov-action@v1 with: @@ -81,16 +67,5 @@ jobs: #env_vars: OS,PYTHON name: codecov-python-${{ matrix.python-version }} #fail_ci_if_error: true - path_to_write_report: ./coverage/codecov_report.txt + path_to_write_report: ./codecov_report.txt #verbose: true - functionalities: gcov - - finish: - needs: build - runs-on: ubuntu-latest - steps: - - name: Coveralls Finished - uses: coverallsapp/github-action@master - with: - github-token: ${{ secrets.github_token }} - parallel-finished: true -- 2.39.2