Skip to content

Commit

Permalink
Increase timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
dragomirp committed Nov 15, 2023
1 parent 041a27f commit 7fe7d07
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion tests/integration/ha_tests/test_replication.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/ha_tests/test_upgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

logger = logging.getLogger(__name__)

TIMEOUT = 5 * 60
TIMEOUT = 600


@pytest.mark.group(1)
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/ha_tests/test_upgrade_from_stable.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

logger = logging.getLogger(__name__)

TIMEOUT = 5 * 60
TIMEOUT = 600


@pytest.mark.group(1)
Expand Down

0 comments on commit 7fe7d07

Please sign in to comment.