Skip to content

Commit

Permalink
Bump timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
dragomirp committed Nov 11, 2023
1 parent 2a0a3d3 commit 6ca421d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
actions: write # Needed to manage GitHub Actions cache

integration-test-juju3:
name: Integration test charm on Juju 3
name: Integration tests on Juju 3
needs:
- build
- lint
Expand All @@ -67,7 +67,7 @@ jobs:
}
integration-test-juju2:
name: Integration test charm on Juju 2
name: Integration tests on Juju 2
needs:
- build
- lint
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ async def deploy_and_relate_bundle_with_postgresql(
apps=[main_application_name],
raise_on_blocked=False,
status=status,
timeout=1500,
timeout=2000,
),
]
if status_message:
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/test_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ async def test_relation_data_is_updated_correctly_when_scaling(ops_test: OpsTest
# Add two more units.
await ops_test.model.applications[DATABASE_APP_NAME].add_units(2)
await ops_test.model.wait_for_idle(
apps=[DATABASE_APP_NAME], status="active", timeout=1000, wait_for_exact_units=4
apps=[DATABASE_APP_NAME], status="active", timeout=1500, wait_for_exact_units=4
)

# Remove the original units.
Expand Down

0 comments on commit 6ca421d

Please sign in to comment.