Skip to content

Commit 4b8a889

Browse files
committed
fix artifact names
1 parent 7f5b351 commit 4b8a889

File tree

1 file changed

+4
-12
lines changed

1 file changed

+4
-12
lines changed

.github/workflows/test.yaml

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ jobs:
5858
test:
5959
name: |-
6060
${{ matrix.os }}
61-
py${{ matrix.python-version }}
62-
srv${{ matrix.jupyter_server-version }}
61+
${{ matrix.python-version }}
62+
s${{ matrix.jupyter_server-version }}
6363
lab${{ matrix.jupyterlab-version }}
6464
nb${{ matrix.notebook-version }}
6565
needs: [build]
@@ -147,21 +147,13 @@ jobs:
147147
cd build
148148
pytest -vv ../tests -c ../pyproject.toml
149149
150-
- name: Upload pytest and coverage reports
150+
- name: Upload test reports
151151
if: always()
152152
uses: actions/upload-artifact@v3
153153
with:
154154
name: |-
155-
unit-tests-${{ matrix.python-version }}-${{ matrix.jupyterlab-version }}-${{ github.run_number }}
155+
tests-${{ matrix.os }}-${{ matrix.python-version }}-${{ matrix.jupyterlab-version }}-${{ github.run_number }}
156156
path: |
157157
./build/pytest
158158
./build/coverage
159-
160-
- name: Upload acceptance test reports
161-
if: always()
162-
uses: actions/upload-artifact@v3
163-
with:
164-
name: |-
165-
acceptance-tests-${{ matrix.python-version }}-${{ matrix.jupyterlab-version }}-${{ github.run_number }}
166-
path: |
167159
./build/robot

0 commit comments

Comments
 (0)