Skip to content

Commit

Permalink
Restrict longer timeout to ppc64le
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkmueller committed Nov 13, 2024
1 parent 459f504 commit 8f04873
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions tests/test_postgres.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
from pytest_container.container import ContainerData
from pytest_container.container import DerivedContainer
from pytest_container.container import container_and_marks_from_pytest_param
from pytest_container.runtime import LOCALHOST

from bci_tester.data import POSTGRESQL_CONTAINERS
from bci_tester.data import POSTGRES_PASSWORD
Expand Down Expand Up @@ -67,9 +68,12 @@ def _generate_test_matrix() -> List[ParameterSet]:
extra_launch_args=(
["--user", username] if username else []
),
healthcheck_timeout=timedelta(
seconds=180
), # FIXME https://github.com/SUSE/BCI-tests/issues/647
# FIXME https://github.com/SUSE/BCI-tests/issues/647
healthcheck_timeout=(
timedelta(minutes=3)
if LOCALHOST.system_info.arch == "ppc64le"
else None
),
),
pg_user,
pw,
Expand Down

0 comments on commit 8f04873

Please sign in to comment.