Skip to content

Commit 29e29a5

Browse files
committed
Shorten the timeout for the "wait for ..." steps
If the hub isn't ready within ten minutes there is probably something wrong and it won't become ready either.
1 parent e9125fd commit 29e29a5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ jobs:
112112
--set config.BinderHub.hub_url_local=http://proxy-public \
113113
--set config.BinderHub.access_token=$GITHUB_ACCESS_TOKEN
114114
- name: Wait for JupyterHub to be ready
115+
timeout-minutes: 10
115116
run: |
116117
# Wait for JupyterHub to be ready
117118
set -e
@@ -130,8 +131,9 @@ jobs:
130131
echo
131132
echo "curl http://localhost:30902/hub/api/" should print the JupyterHub version
132133
curl http://localhost:30902/hub/api/
133-
- name: Wait for binderhub to be ready
134+
- name: Wait for BinderHub to be ready
134135
if: matrix.test == 'helm'
136+
timeout-minutes: 10
135137
run: |
136138
# Wait for BinderHub to be ready
137139
set -e

0 commit comments

Comments
 (0)