(destination_name: str)
| 14 | |
| 15 | |
| 16 | def _make_pipeline(destination_name: str): |
| 17 | return dlt.pipeline( |
| 18 | pipeline_name="rest_api", |
| 19 | destination=destination_name, |
| 20 | dataset_name="rest_api_data", |
| 21 | dev_mode=True, |
| 22 | ) |
| 23 | |
| 24 | |
| 25 | def test_rest_api_config_provider(toml_providers: ConfigProvidersContainer) -> None: |
no test coverage detected