From e9eca390fe6c41c31179dbeea0d19b8b5909723d Mon Sep 17 00:00:00 2001 From: Noha Ihab <49988746+NohaIhab@users.noreply.github.com> Date: Wed, 27 Nov 2024 10:49:46 +0200 Subject: [PATCH] fix: deploy minio from latest/edge in integration tests (#209) (#210) --- 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)