From d47cf64866100b36be1218cf33dc03a285bac12f Mon Sep 17 00:00:00 2001 From: Willi Date: Wed, 28 Aug 2024 15:50:38 +0530 Subject: [PATCH] adds filesystem configs to load tests --- tests/load/sources/rest_api/test_rest_api_source.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/load/sources/rest_api/test_rest_api_source.py b/tests/load/sources/rest_api/test_rest_api_source.py index b5cf493926..25a9952ba4 100644 --- a/tests/load/sources/rest_api/test_rest_api_source.py +++ b/tests/load/sources/rest_api/test_rest_api_source.py @@ -23,7 +23,7 @@ def _make_pipeline(destination_name: str): @pytest.mark.parametrize( "destination_config", - destinations_configs(default_sql_configs=True), + destinations_configs(default_sql_configs=True, local_filesystem_configs=True), ids=lambda x: x.name, ) def test_rest_api_source(destination_config: DestinationTestConfiguration, request: Any) -> None: @@ -63,7 +63,7 @@ def test_rest_api_source(destination_config: DestinationTestConfiguration, reque @pytest.mark.parametrize( "destination_config", - destinations_configs(default_sql_configs=True), + destinations_configs(default_sql_configs=True, local_filesystem_configs=True), ids=lambda x: x.name, ) def test_dependent_resource(destination_config: DestinationTestConfiguration, request: Any) -> None: