Skip to content

Commit

Permalink
remove coveralls from workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
fcurella committed Feb 13, 2025
1 parent e896225 commit 046406d
Showing 1 changed file with 3 additions and 27 deletions.
30 changes: 3 additions & 27 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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]
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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

0 comments on commit 046406d

Please sign in to comment.