We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffbe070 commit 79ad99cCopy full SHA for 79ad99c
1 file changed
tests/integration/test_model.py
@@ -349,6 +349,10 @@ async def test_deploy_bundle_with_overlay_as_argument():
349
@pytest.mark.bundle
350
async def test_deploy_bundle_with_multi_overlay_as_argument():
351
async with base.CleanModel() as model:
352
+ assert model._info
353
+ if str(model._info.agent_version) < "3.4.3":
354
+ pytest.skip("bundle/postgresql charm requires Juju 3.4.3 or later")
355
+
356
overlay_path = OVERLAYS_DIR / 'test-multi-overlay.yaml'
357
358
await model.deploy('juju-qa-bundle-test', overlays=[overlay_path])
0 commit comments