Skip to content

Commit

Permalink
pip test
Browse files Browse the repository at this point in the history
  • Loading branch information
PrestonH2O committed Aug 15, 2023
1 parent d457687 commit f4a4f3d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ jobs:

# Convert .info to .xml

## checkout repo
## checkout repo !!!!! if we're doing the pip install, this seems redundant
- name: Lcov-to-cobertuba Checkout repo
uses: actions/checkout@v2
with:
Expand All @@ -164,7 +164,9 @@ jobs:

## run conversion
- name: execute py script # !!!!! we're giving it an info file and it asks for .dat, this won't work
run: python lcov_cobertura.py coverage.info --base-dir ${{runner.workspace}}/build-meshFields --output ${{runner.workspace}}/build-meshFields/coverage.xml
run: |
pip install lcov_cobertura
python lcov_cobertura.py coverage.info --base-dir ${{runner.workspace}}/build-meshFields --output ${{runner.workspace}}/build-meshFields/coverage.xml
# Test to make sure the file is created
- name: Upload xml test
Expand Down

0 comments on commit f4a4f3d

Please sign in to comment.