tests: use https instead of http to check app is indeed installed

This commit is contained in:
Alexandre Aubin 2021-09-01 15:08:14 +02:00
parent b2a67c4f86
commit 9dc0c9b087

View file

@ -132,7 +132,7 @@ def app_is_exposed_on_http(domain, path, message_in_page):
try:
r = requests.get(
"http://127.0.0.1" + path + "/",
"https://127.0.0.1" + path + "/",
headers={"Host": domain},
timeout=10,
verify=False,