Skip to content

Commit 6b5f241

Browse files
committed
Fix upload of tests results
1 parent 0e62ac3 commit 6b5f241

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/integration.yaml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ jobs:
9393
with:
9494
name: pytest-results-${{matrix.test-type}}-${{matrix.connection-type}}-${{matrix.python-version}}
9595
path: |
96-
'${{matrix.test-type}}*-results.xml'
97-
'${{matrix.test-type}}-profile.out'
96+
${{matrix.test-type}}*-results.xml
97+
${{matrix.test-type}}-profile.out
9898
if-no-files-found: error
9999
retention-days: 10
100100

@@ -109,7 +109,7 @@ jobs:
109109
continue-on-error: true
110110
with:
111111
name: Test Results ${{matrix.python-version}} ${{matrix.test-type}}-${{matrix.connection-type}}
112-
path: '*.xml'
112+
path: ${{matrix.test-type}}*-results.xml
113113
reporter: java-junit
114114
list-suites: all
115115
list-tests: all
@@ -132,10 +132,12 @@ jobs:
132132
name: RESP3 [${{ matrix.python-version }} ${{matrix.test-type}}-${{matrix.connection-type}}]
133133
steps:
134134
- uses: actions/checkout@v4
135+
135136
- uses: actions/setup-python@v5
136137
with:
137138
python-version: ${{ matrix.python-version }}
138139
cache: 'pip'
140+
139141
- name: Run tests
140142
run: |
141143
pip install -U setuptools wheel
@@ -154,8 +156,8 @@ jobs:
154156
with:
155157
name: pytest-results-${{matrix.test-type}}-${{matrix.connection-type}}-${{matrix.python-version}}-resp3
156158
path: |
157-
'${{matrix.test-type}}*-results.xml'
158-
'${{matrix.test-type}}-profile.out'
159+
${{matrix.test-type}}*-results.xml
160+
${{matrix.test-type}}-profile.out
159161
if-no-files-found: error
160162
retention-days: 10
161163

@@ -170,7 +172,7 @@ jobs:
170172
continue-on-error: true
171173
with:
172174
name: Test Results ${{matrix.python-version}} ${{matrix.test-type}}-${{matrix.connection-type}}-resp3
173-
path: '*-results.xml'
175+
path: ${{matrix.test-type}}*-results.xml
174176
reporter: java-junit
175177
list-suites: all
176178
list-tests: all

0 commit comments

Comments
 (0)