We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5d64dc commit 1eb1811Copy full SHA for 1eb1811
.github/workflows/test.yml
@@ -331,6 +331,16 @@ jobs:
331
export BINDER_URL=http://localhost:30901
332
pytest --helm -m "remote" -v --maxfail=10 --cov binderhub --durations=10 --color=yes
333
334
+ - name: Get BinderHub health and metrics outputs
335
+ if: always()
336
+ run: |
337
+ if [ "${{ matrix.test }}" = "helm" ]; then
338
+ for endpoint in versions health metrics; do
339
+ echo -e "\n${endpoint}"
340
+ curl http://localhost:30901/$endpoint
341
+ done
342
+ fi
343
+
344
# GitHub Action reference: https://github.com/jupyterhub/action-k8s-namespace-report
345
- name: Kubernetes namespace report
346
uses: jupyterhub/action-k8s-namespace-report@v1
0 commit comments