Files
buildroot/support/testing/tests/package/sample_python_requests.py
Marcus Hoffmann 425abcd025 support/testing: python-requests: new runtime test
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>
2026-02-03 15:15:31 +01:00

5 lines
82 B
Python

import requests
r = requests.get("http://localhost")
assert r.status_code == 200