mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-19 22:03:45 -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>
(cherry picked from commit 425abcd025)
Signed-off-by: Thomas Perale <thomas.perale@mind.be>
5 lines
82 B
Python
5 lines
82 B
Python
import requests
|
|
|
|
r = requests.get("http://localhost")
|
|
assert r.status_code == 200
|