From 194972fdb03dc6e65f1bcbabc652337ecdba3597 Mon Sep 17 00:00:00 2001 From: arturo-seijas <102022572+arturo-seijas@users.noreply.github.com> Date: Thu, 15 Jun 2023 17:05:30 +0200 Subject: [PATCH] Fix postgresql deployment for integration tests (#70) Bypassing. The SAML integration test is failing but the change should not be affecting it --- tests/integration/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/conftest.py b/tests/integration/conftest.py index 8d7f85d3..4b556f5c 100644 --- a/tests/integration/conftest.py +++ b/tests/integration/conftest.py @@ -134,7 +134,7 @@ async def app_fixture( """ # Deploy relations to speed up overall execution await asyncio.gather( - model.deploy("postgresql-k8s", channel="latest/stable", series="focal", trust=True), + model.deploy("postgresql-k8s", channel="latest/stable", series="focal"), model.deploy("redis-k8s", series="focal"), model.deploy("nginx-ingress-integrator", series="focal", trust=True), )