Skip to content

Commit

Permalink
increase timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
rgildein committed Aug 19, 2024
1 parent ce62a9c commit 205d1cc
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions tests/test_bundle.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,16 @@ async def test_kubectl_access(ops_test: OpsTest):
async def test_build_and_deploy_istio_charms(ops_test: OpsTest):
# Build, deploy, and relate istio charms
charms_path = "./charms/istio"
istio_charms = await ops_test.build_charms(f"{charms_path}-gateway", f"{charms_path}-pilot")
#istio_charms = await ops_test.build_charms(f"{charms_path}-gateway", f"{charms_path}-pilot")
istio_charms = await ops_test.build_charms(f"{charms_path}-pilot")

await ops_test.model.deploy(
istio_charms["istio-pilot"], application_name=ISTIO_PILOT, series="focal", trust=True
)
await ops_test.model.deploy(
istio_charms["istio-gateway"],
# istio_charms["istio-gateway"],
"istio-gateway",
channel="latest/edge",
application_name=ISTIO_GATEWAY_APP_NAME,
series="focal",
config={"kind": "ingress"},
Expand Down Expand Up @@ -275,7 +278,7 @@ async def test_enable_ingress_auth(ops_test: OpsTest):
await ops_test.model.wait_for_idle(
status="active",
raise_on_blocked=False,
timeout=90 * 10,
timeout=60 * 20,
)

# Wait for the pods from our secondary workload, just in case. This should be faster than
Expand Down

0 comments on commit 205d1cc

Please sign in to comment.