Increase timeout of httpbin tests to reduce risk of failures on CI runs (#8263)

This commit is contained in:
Mirko Galimberti 2023-05-31 20:49:39 +02:00 committed by GitHub
parent 9d7df3f105
commit 0aa4c71b4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -98,7 +98,7 @@ def test_auth_header(kivy_clock):
req_headers=head,
debug=True
)
wait_request_is_finished(kivy_clock, req)
wait_request_is_finished(kivy_clock, req, timeout=60)
if req.error and req.error.errno == 11001:
pytest.skip('Cannot connect to get address')
@ -120,7 +120,7 @@ def test_auth_auto(kivy_clock):
on_redirect=obj._on_redirect,
debug=True
)
wait_request_is_finished(kivy_clock, req)
wait_request_is_finished(kivy_clock, req, timeout=60)
if req.error and req.error.errno == 11001:
pytest.skip('Cannot connect to get address')
@ -146,7 +146,7 @@ def test_ca_file(kivy_clock, scheme):
ca_file=certifi.where(),
debug=True
)
wait_request_is_finished(kivy_clock, req)
wait_request_is_finished(kivy_clock, req, timeout=60)
if req.error and req.error.errno == 11001:
pytest.skip('Cannot connect to get address')