Skip to content
Advertisement

Tag: kedro

Load existing data catalog programmatically

I want to write pytest unit test in Kedro 0.17.5. They need to perform integrity checks on dataframes created by the pipeline. These dataframes are specified in the catalog.yml and already persisted successfully using kedro run. The catalog.yml is in conf/base. I have a test module test_my_dataframe.py in src/tests/pipelines/my_pipeline/. How can I load the data catalog based on my catalog.yml

Advertisement