Skip to content

Commit

Permalink
Updated CodeCov uploading mechanism
Browse files Browse the repository at this point in the history
  • Loading branch information
giuseppe-carboni committed Apr 10, 2024
1 parent cc97f24 commit a7147b3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,11 @@ jobs:
coverage run -p -m unittest discover -b tests
coverage combine
coverage xml
- name: Upload test coverage to codecov
uses: codecov/codecov-action@v4
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: discos/simulators
- name: Run the Python linter
run: |
prospector
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/scheduled_py3_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,11 @@ jobs:
coverage run -p -m unittest discover -b tests
coverage combine
coverage xml
- name: Upload test coverage to codecov
uses: codecov/codecov-action@v4
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: discos/simulators
- name: Run the Python linter
run: |
prospector
Expand Down

0 comments on commit a7147b3

Please sign in to comment.