From 266231909d53136d6c4578892329ef8c643130ea Mon Sep 17 00:00:00 2001 From: Aleksandr Alferov Date: Thu, 16 Jan 2025 21:48:29 +0300 Subject: [PATCH] ADCM-6278 Added a sample implementation of the examples --- tests/integration/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/conftest.py b/tests/integration/conftest.py index b3b313a..3532788 100644 --- a/tests/integration/conftest.py +++ b/tests/integration/conftest.py @@ -197,12 +197,12 @@ async def complex_hostprovider_bundle(adcm_client: ADCMClient, tmp_path: Path) - @pytest_asyncio.fixture() -async def adcm_for_examples( +def adcm_for_examples( adcm: ADCMContainer, simple_cluster_bundle: Bundle, complex_cluster_bundle: Bundle, previous_complex_cluster_bundle: Bundle, simple_hostprovider_bundle: Bundle, -) -> ADCMContainer: +) -> Generator[ADCMContainer, None, None]: _ = simple_cluster_bundle, complex_cluster_bundle, previous_complex_cluster_bundle, simple_hostprovider_bundle yield adcm