From d77079189fed657088faeaed393482d40b686c6a Mon Sep 17 00:00:00 2001 From: Arturo Seijas Date: Fri, 22 Mar 2024 12:33:12 +0100 Subject: [PATCH] wait for all deps --- tests/integration/test_charm.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/tests/integration/test_charm.py b/tests/integration/test_charm.py index 3f4af9bd..d7f35c74 100644 --- a/tests/integration/test_charm.py +++ b/tests/integration/test_charm.py @@ -26,17 +26,6 @@ logger = logging.getLogger() -@pytest.mark.asyncio -@pytest.mark.abort_on_fail -async def test_active(app: Application): - """Check that the charm is active. - - Assume that the charm has already been built and is running. - """ - # Application actually does have units - assert app.units[0].workload_status == ActiveStatus.name # type: ignore - - @pytest.mark.asyncio @pytest.mark.abort_on_fail @pytest.mark.usefixtures("app")