We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d14c5a3 commit 6c504dbCopy full SHA for 6c504db
.github/workflows/tox.yml
@@ -239,7 +239,9 @@ jobs:
239
240
- if: ${{ (success() || failure()) && contains(matrix.coverage, 'github') && matrix.pytest == 'true' }}
241
name: add run info to coverage filename
242
- run: mv $(find . -name .coverage) .coverage.${{ github.sha }}-${{ runner.os }}-${{ runner.arch }}-${{ matrix.toxenv }}
+ run: |
243
+ find ${{GITHUB_WORKSPACE}} -name .coverage
244
+ mv $(find ${{GITHUB_WORKSPACE}} -name .coverage) .coverage.${{ github.sha }}-${{ runner.os }}-${{ runner.arch }}-${{ matrix.toxenv }}
245
shell: sh
246
247
- name: Upload coverage data to GitHub
0 commit comments