diff --git a/tests/integration/ha_tests/test_replication.py b/tests/integration/ha_tests/test_replication.py index abb7d04025..64baac8ba0 100644 --- a/tests/integration/ha_tests/test_replication.py +++ b/tests/integration/ha_tests/test_replication.py @@ -126,7 +126,9 @@ async def test_no_data_replicated_between_clusters(ops_test: OpsTest, continuous series=CHARM_SERIES, config={"profile": "testing"}, ) - await ops_test.model.wait_for_idle(apps=[new_cluster_app], status="active") + await ops_test.model.wait_for_idle( + apps=[new_cluster_app], status="active", timeout=1000 + ) # Start an application that continuously writes data to the database. await start_continuous_writes(ops_test, app) diff --git a/tests/integration/ha_tests/test_upgrade.py b/tests/integration/ha_tests/test_upgrade.py index d8b916087b..26ef390e4a 100644 --- a/tests/integration/ha_tests/test_upgrade.py +++ b/tests/integration/ha_tests/test_upgrade.py @@ -27,7 +27,7 @@ logger = logging.getLogger(__name__) -TIMEOUT = 5 * 60 +TIMEOUT = 600 @pytest.mark.group(1) diff --git a/tests/integration/ha_tests/test_upgrade_from_stable.py b/tests/integration/ha_tests/test_upgrade_from_stable.py index 4c99d3ef60..c0978fb7aa 100644 --- a/tests/integration/ha_tests/test_upgrade_from_stable.py +++ b/tests/integration/ha_tests/test_upgrade_from_stable.py @@ -22,7 +22,7 @@ logger = logging.getLogger(__name__) -TIMEOUT = 5 * 60 +TIMEOUT = 600 @pytest.mark.group(1)