From 28b58463c0eaa765786619b78ebf7ce7aa1464a8 Mon Sep 17 00:00:00 2001 From: Simon Li Date: Tue, 21 May 2024 13:58:43 +0100 Subject: [PATCH] test_image.py: pass verify=False for all web requests --- ci/test_image.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ci/test_image.py b/ci/test_image.py index 0c481ce..2d16d22 100755 --- a/ci/test_image.py +++ b/ci/test_image.py @@ -28,11 +28,12 @@ def test_image(): "server": 1, "noredirect": 1, }, + verify=False, ) r.raise_for_status() assert r.text == "OK" - r = session.get(f"{SERVER}/api/v0/m/images/{IMAGE_ID}") + r = session.get(f"{SERVER}/api/v0/m/images/{IMAGE_ID}", verify=False) r.raise_for_status() im = r.json()