From 938b3c202d76a9c3bf9a60b3f01824751ed979f9 Mon Sep 17 00:00:00 2001 From: Noha Ihab <49988746+NohaIhab@users.noreply.github.com> Date: Mon, 25 Nov 2024 15:08:11 +0200 Subject: [PATCH] fix: deploy minio from latest/edge in integration tests (#209) --- charms/argo-controller/tests/integration/test_charm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charms/argo-controller/tests/integration/test_charm.py b/charms/argo-controller/tests/integration/test_charm.py index e957c21..db5abe1 100644 --- a/charms/argo-controller/tests/integration/test_charm.py +++ b/charms/argo-controller/tests/integration/test_charm.py @@ -46,7 +46,7 @@ async def test_build_and_deploy_with_relations(ops_test: OpsTest): ) # Deploy required relations - await ops_test.model.deploy(entity_url=MINIO, config=MINIO_CONFIG) + await ops_test.model.deploy(entity_url=MINIO, config=MINIO_CONFIG, channel=MINIO_CHANNEL) await ops_test.model.integrate(f"{ARGO_CONTROLLER}:object-storage", f"{MINIO}:object-storage") await ops_test.model.wait_for_idle(timeout=60 * 10)