Update retry count in services_page.py ui tests

This commit is contained in:
Théophile Diot 2024-05-02 10:24:25 +02:00
parent 59b451b163
commit bd3318289f
No known key found for this signature in database
GPG key ID: 248FEA4BAE400D06

View file

@ -436,7 +436,7 @@ try:
log_info("Service app2.example.com has been set as draft, making sure it's not working anymore ...")
retry = 0
for x in range(5):
for x in range(7):
retry += 1
with suppress(RequestException):
req = get("http://app2.example.com")
@ -575,7 +575,7 @@ try:
log_info("Service app3.example.com has been deleted successfully, making sure it's not working anymore ...")
retry = 0
for x in range(5):
for x in range(7):
retry += 1
with suppress(RequestException):
req = get("http://app3.example.com")