mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-06 23:53:50 -09:00
Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu> [Peter: Fix flake8 warning, use http.server instead of relying on connectivity] Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 lines
82 B
Python
5 lines
82 B
Python
import requests
|
|
|
|
r = requests.get("http://localhost")
|
|
assert r.status_code == 200
|