diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5d145dd197..ba18dcd3a6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -196,7 +196,7 @@ jobs: with: python-version: ${{ matrix.python }} - name: Install Tox and any other packages - run: python -m pip install tox coveralls + run: python -m pip install tox - name: pytest uses: liskin/gh-problem-matcher-wrap@v3 with: @@ -207,14 +207,7 @@ jobs: COVERALLS_FLAG_NAME: run-ubuntu-${{ matrix.python }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} COVERALLS_SERVICE_NAME: github - - name: Publish coverage - run: coveralls --service=github - env: - COVERALLS_PARALLEL: true - COVERALLS_FLAG_NAME: run-ubuntu-${{ matrix.python }} - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - COVERALLS_SERVICE_NAME: github - + test_windows: runs-on: windows-latest needs: [flake8, isort, black, doc8, checkmanifest, typing] @@ -243,17 +236,10 @@ jobs: with: python-version: ${{ matrix.python }} - name: Install Tox and any other packages - run: python -m pip install tox coveralls + run: python -m pip install tox - name: Run Tox # Run tox using the version of Python in `PATH` run: tox -e py - - name: Publish coverage - run: coveralls --service=github - env: - COVERALLS_PARALLEL: true - COVERALLS_FLAG_NAME: run-ubuntu-${{ matrix.python }} - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - COVERALLS_SERVICE_NAME: github test_alpine: runs-on: ubuntu-latest @@ -281,13 +267,3 @@ jobs: env: TOXENV: alpine TEST_ALPINE: 1 - - finish: - needs: [test_ubuntu, test_windows, test_alpine] - runs-on: ubuntu-latest - steps: - - name: Coveralls Finished - uses: AndreMiras/coveralls-python-action@develop - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - parallel-finished: true