We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c28c7bf commit d560467Copy full SHA for d560467
.github/workflows/ci.yaml
@@ -182,6 +182,7 @@ jobs:
182
- name: Main tests with ${{ matrix.plex }} server
183
env:
184
TEST_ACCOUNT_ONCE: ${{ matrix.plex == 'unclaimed' }}
185
+ id: test
186
run: |
187
. venv/bin/activate
188
pytest \
@@ -200,6 +201,7 @@ jobs:
200
201
python -u tools/plex-teardowntest.py
202
203
- name: Upload coverage artifact
204
+ if: always() && (steps.test.outcome == 'success' || steps.test.outcome == 'failure')
205
uses: actions/upload-artifact@v4
206
with:
207
name: coverage-${{ matrix.plex }}-${{ steps.python.outputs.python-version }}
0 commit comments