From 109fb516bc59e23b88ebc10e4505d9c5b346b537 Mon Sep 17 00:00:00 2001 From: Dima Tisnek Date: Tue, 1 Oct 2024 12:24:24 +0900 Subject: [PATCH 1/2] chore: disable failing integration test --- tests/integration/test_model.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration/test_model.py b/tests/integration/test_model.py index 8d213553a..06f72a7a3 100644 --- a/tests/integration/test_model.py +++ b/tests/integration/test_model.py @@ -309,6 +309,7 @@ async def test_deploy_local_bundle_with_overlay_multi(): @base.bootstrapped @pytest.mark.bundle +@pytest.mark.xfail("The `ghost` charm is hopelessly out of date") async def test_deploy_bundle_with_overlay_as_argument(): async with base.CleanModel() as model: overlay_path = OVERLAYS_DIR / 'test-overlay.yaml' From 3d02fc7d43fa1cc7123e8a9dbe36fadc9ae8bad0 Mon Sep 17 00:00:00 2001 From: Dima Tisnek Date: Tue, 1 Oct 2024 12:28:39 +0900 Subject: [PATCH 2/2] chore: fix xfail call --- tests/integration/test_model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_model.py b/tests/integration/test_model.py index 06f72a7a3..928d55a81 100644 --- a/tests/integration/test_model.py +++ b/tests/integration/test_model.py @@ -309,7 +309,7 @@ async def test_deploy_local_bundle_with_overlay_multi(): @base.bootstrapped @pytest.mark.bundle -@pytest.mark.xfail("The `ghost` charm is hopelessly out of date") +@pytest.mark.xfail(reason="The `ghost` charm is hopelessly out of date") async def test_deploy_bundle_with_overlay_as_argument(): async with base.CleanModel() as model: overlay_path = OVERLAYS_DIR / 'test-overlay.yaml'