From 94d963b1aeb50802c687580b3fee4f066aba2e80 Mon Sep 17 00:00:00 2001 From: mibe Date: Tue, 27 Aug 2024 09:22:40 +0100 Subject: [PATCH] #49 Disabled export_slc_async --- pytest-slc/test/integration/pytest_slc_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytest-slc/test/integration/pytest_slc_test.py b/pytest-slc/test/integration/pytest_slc_test.py index 93cf112..0cd89e6 100644 --- a/pytest-slc/test/integration/pytest_slc_test.py +++ b/pytest-slc/test/integration/pytest_slc_test.py @@ -19,7 +19,7 @@ def extension_build_slc_async(export_slc_async): with LanguageContainerBuilder('test_container', LANGUAGE_ALIAS) as slc_builder: project_directory = find_path_backwards("pyproject.toml", __file__).parent slc_builder.prepare_flavor(project_directory) - yield export_slc_async(slc_builder) + yield slc_builder, None @pytest.fixture(scope='session') def extension_upload_slc(extension_build_slc_async, upload_slc):