Skip to content

Commit

Permalink
Adding coverage artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
germa89 committed Oct 25, 2023
1 parent a56f400 commit 99e06c0
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,22 @@ jobs:
export ANSYSLMD_LICENSE_FILE=1055@${{ secrets.LICENSE_SERVER }}
pytest -k "not test_dpf" \
${{ env.PYTEST_ARGUMENTS }} \
--skip-regression-check
--skip-regression-check \
--cov-report=xml:ubuntu-v22.2.0-local-minimal.xml
- uses: codecov/codecov-action@v3
name: "Upload coverage to Codecov"
with:
token: ${{ secrets.CODECOV_TOKEN }}
root_dir: ${{ github.workspace }}
name: ubuntu-v22.2.0-local-minimal.xml
flags: ubuntu,local,v22.2.0,minimal

- name: 'Upload coverage artifacts'
uses: actions/upload-artifact@v3
with:
name: ubuntu-v22.2.0-local-minimal.xml
path: ./ubuntu-v22.2.0-local-minimal.xml

test-windows:
if: github.repository == ''
Expand Down

0 comments on commit 99e06c0

Please sign in to comment.