Skip to content

Commit 9a66d8d

Browse files
Tweak results XML upload location
1 parent fa88521 commit 9a66d8d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/code.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
env:
8484
CIBW_BUILD: ${{ matrix.python }}*64
8585
CIBW_TEST_EXTRAS: dev
86-
CIBW_TEST_COMMAND: pytest {project}/tests --cov-report xml:${{ matrix.cov_file }} --junit-xml=${{matrix.results_file}}
86+
CIBW_TEST_COMMAND: pytest {project}/tests --cov-report xml:${{ matrix.cov_file }} --junit-xml=${{ matrix.results_file }}
8787
# Disable auditwheel as it isn't compatible with setuptools_dso approach
8888
# https://github.com/mdavidsaver/setuptools_dso/issues/17
8989
CIBW_REPAIR_WHEEL_COMMAND: ""
@@ -108,8 +108,7 @@ jobs:
108108
uses: actions/upload-artifact@v2
109109
with:
110110
name: Unit Test Results (${{ matrix.os }}/${{ matrix.python }})
111-
path: ${{matrix.results_file}}
112-
directory: dist
111+
path: dist/pytest-results.xml
113112

114113
publish-test-results:
115114
name: "Publish Unit Tests Results"

0 commit comments

Comments
 (0)