mirror of
https://github.com/jupyterhub/the-littlest-jupyterhub.git
synced 2025-12-18 21:54:05 +08:00
6 lines
102 B
Python
6 lines
102 B
Python
|
|
import requests
|
||
|
|
|
||
|
|
def test_hub_up():
|
||
|
|
r = requests.get('http://127.0.0.1')
|
||
|
|
r.raise_for_status()
|