Skip to content

Commit

Permalink
Revert coverage reporting changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
adiroiban committed Apr 11, 2022
1 parent 682f2c3 commit 5c5c046
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
- uses: twisted/python-info-action@v1
- name: Install dependencies
run: |
python -m pip install --upgrade pip tox coverage
python -m pip install --upgrade pip tox coverage coveralls
- name: Test
run: |
Expand All @@ -126,12 +126,21 @@ jobs:
python -m coverage xml -o coverage.xml -i
python -m coverage report --skip-covered
- uses: codecov/codecov-action@v2
- uses: codecov/codecov-action@v1
if: ${{ !cancelled() && contains(matrix['tox-env'], 'withcov') }}
with:
files: coverage.xml
name: lnx-${{ matrix.python-version }}-${{ matrix.tox-env }}${{ matrix.noipv6 }}
fail_ci_if_error: true
functionalities: gcov,search

- name: Publish to Coveralls
if: ${{ !cancelled() && contains(matrix['tox-env'], 'withcov') }}
continue-on-error: true
run: |
python -m coveralls -v
env:
COVERALLS_REPO_TOKEN: 'JFDTIRUVOQ8jCM3zcajrZALlpKXyiXGAX'

static-checks:
runs-on: ubuntu-20.04
Expand Down

0 comments on commit 5c5c046

Please sign in to comment.