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 58c07dd commit ecde6b4Copy full SHA for ecde6b4
binderhub/tests/test_health.py
@@ -27,3 +27,7 @@ async def test_basic_health(app):
27
quota_check["total_pods"]
28
== quota_check["build_pods"] + quota_check["user_pods"]
29
)
30
+
31
+ # HEAD requests should work as well
32
+ r = await async_requests.head(app.url + "/health")
33
+ assert r.status_code == 200
0 commit comments