mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-09-09 17:12:02 +00:00
16 lines
450 B
Python
16 lines
450 B
Python
![]() |
from metadata.ingestion.lineage.sql_lineage import search_cache
|
||
|
from metadata.workflow.metadata import MetadataWorkflow
|
||
|
from metadata.workflow.profiler import ProfilerWorkflow
|
||
|
|
||
|
|
||
|
def test_profiler(
|
||
|
patch_passwords_for_db_services,
|
||
|
run_workflow,
|
||
|
ingestion_config,
|
||
|
profiler_config,
|
||
|
create_test_data,
|
||
|
):
|
||
|
search_cache.clear()
|
||
|
run_workflow(MetadataWorkflow, ingestion_config)
|
||
|
run_workflow(ProfilerWorkflow, profiler_config)
|