Skip to content

Commit

Permalink
Add code for code coverage integration
Browse files Browse the repository at this point in the history
  • Loading branch information
aimiktena committed Jun 8, 2024
1 parent becec79 commit 2d9946a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ jobs:
run: |
python -mpip install --upgrade pip
python -mpip install --progress-bar=off -r ci/requirements.txt
python -mpip install coverage
virtualenv --version
pip --version
tox --version
Expand All @@ -161,6 +162,13 @@ jobs:
echo "::warning title=Invalid file permissions automatically fixed::$line"
done
- name: Generate Report
run: |
coverage run -m unittest
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v2

- name: upload artifact
uses: actions/upload-pages-artifact@v3

Expand Down

0 comments on commit 2d9946a

Please sign in to comment.