Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tests: skip if HTTP Error 504: Gateway Time-out #2927

Merged
merged 2 commits into from
Jan 31, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions tests/unittests/_helpers/wrappers.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import os
from functools import wraps
from typing import Any, Callable, Optional
from urllib.error import HTTPError

import pytest

Expand Down Expand Up @@ -47,6 +48,10 @@ def run_test(*args: Any, **kwargs: Any) -> Optional[Any]:

try:
return function(*args, **kwargs)
except HTTPError as ex:
if ex.code != 504: # HTTP Error 504: Gateway Time-out
raise ex
pytest.skip(reason)
except URLError as ex:
if "Error 403: Forbidden" not in str(ex) or not ALLOW_SKIP_IF_BAD_CONNECTION:
raise ex
Expand Down
Loading