Skip to content

Commit

Permalink
test_image.py: pass verify=False for all web requests
Browse files Browse the repository at this point in the history
  • Loading branch information
manics authored May 21, 2024
1 parent af2fd5d commit 28b5846
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ci/test_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit 28b5846

Please sign in to comment.