Skip to content

Commit e9125fd

Browse files
committed
Always provide the kubernetes namespace report
It happens that a job is cancelled because a step takes too long. To help debug those cases we always provide the namespace report. Also always upload the codecov stats.
1 parent 1f1f0c4 commit e9125fd

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -154,13 +154,11 @@ jobs:
154154
export BINDER_URL=http://localhost:30901
155155
pytest -m "remote" -vx --cov binderhub
156156
- name: Kubernetes namespace report
157-
if: ${{ failure() }}
157+
if: ${{ always() }}
158158
run: |
159159
# Display debugging information
160160
. ci/common
161161
full_namespace_report
162162
- name: Upload coverage stats
163163
uses: codecov/codecov-action@v1
164-
# https://help.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions
165-
# Upload regardless of whether tests pass or fail
166-
if: ${{ !cancelled() }}
164+
if: ${{ always() }}

0 commit comments

Comments
 (0)