Skip to content

Commit

Permalink
adds filesystem configs to load tests
Browse files Browse the repository at this point in the history
  • Loading branch information
willi-mueller committed Aug 28, 2024
1 parent d7bdd9a commit d47cf64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/load/sources/rest_api/test_rest_api_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit d47cf64

Please sign in to comment.