Skip to content

Commit

Permalink
Merge pull request #229 from jhlegarreta/FixArtifactUploadNamingConflict
Browse files Browse the repository at this point in the history
ENH: Fix artifact upload naming conflict
  • Loading branch information
jhlegarreta committed Jan 8, 2024
2 parents b73d073 + 1333fe5 commit 165cfcd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test_package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ jobs:
coverage run --source whitematteranalysis -m pytest -o junit_family=xunit2 -v --doctest-modules --junitxml=junit/test-results-${{ runner.os }}-${{ matrix.python-version }}.xml
- name: Upload pytest test results
uses: actions/upload-artifact@master
uses: actions/upload-artifact@v4
with:
name: pytest-results-${{ runner.os }}-${{ matrix.python-version }}
name: pytest-results-${{ runner.os }}-${{ matrix.python-version }}-${{ matrix.requires }}
path: junit/test-results-${{ runner.os }}-${{ matrix.python-version }}.xml
# Use always() to always run this step to publish test results when there are test failures
if: always()
Expand Down

0 comments on commit 165cfcd

Please sign in to comment.