Skip to content
Snippets Groups Projects
Commit 93e4ad4b authored by Jesse Mapel's avatar Jesse Mapel Committed by GitHub
Browse files

Added separate python coverage upload

parent ae5061ba
No related branches found
No related tags found
No related merge requests found
...@@ -40,6 +40,13 @@ jobs: ...@@ -40,6 +40,13 @@ jobs:
- name: Test Python Package - name: Test Python Package
run: | run: |
pytest --cov-report=xml --cov=ale tests/pytests -vv pytest --cov-report=xml --cov=ale tests/pytests -vv
- name: Upload Python Coverage
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
verbose: true
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9'
- name: Build C++ Package - name: Build C++ Package
run: | run: |
mkdir -p build mkdir -p build
...@@ -50,7 +57,7 @@ jobs: ...@@ -50,7 +57,7 @@ jobs:
run: | run: |
cd build cd build
ctest -VV ctest -VV
- name: Upload Coverage - name: Upload C++ Coverage
uses: codecov/codecov-action@v1 uses: codecov/codecov-action@v1
with: with:
token: ${{ secrets.CODECOV_TOKEN }} token: ${{ secrets.CODECOV_TOKEN }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment