Skip to content

Commit

Permalink
Update cmake-multi-platform.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
martinjankoehler authored Dec 4, 2024
1 parent 196923d commit 5a2d20e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -204,11 +204,11 @@ jobs:
continue-on-error: true
run: >
poetry run coverage run -m pytest
--alluredir $ALLURE_RESULTS_PATH
--alluredir ${{ env.ALLURE_RESULTS_PATH }}
--color no
- name: "[Python] Create coverage report"
run: poetry run coverage html --directory $COVERAGE_REPORT_PATH
run: poetry run coverage html --directory ${{ env.COVERAGE_REPORT_PATH }}

- name: "Print listing of build dir"
run: find ${{github.workspace}}/build -path ${{github.workspace}}/build/_deps -prune -o -print
Expand All @@ -218,7 +218,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: upload-python-coverage-report-${{ matrix.os }}_${{ matrix.python-version }}
path: $COVERAGE_REPORT_PATH
path: ${{ env.COVERAGE_REPORT_PATH }}
retention-days: 1
if-no-files-found: error

Expand All @@ -227,7 +227,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: upload-python-allure-report-${{ matrix.os }}_${{ matrix.python-version }}
path: $ALLURE_RESULTS_PATH
path: ${{ env.ALLURE_RESULTS_PATH }}
retention-days: 1
if-no-files-found: error

Expand Down

0 comments on commit 5a2d20e

Please sign in to comment.