From 254a19eb424fd31ca039aa268cf289294501cf37 Mon Sep 17 00:00:00 2001 From: Tudor Date: Thu, 9 Jul 2026 14:11:31 +0100 Subject: [PATCH] fix(pipeline): run gias_code_names seed + drift test in the daily DAG Co-Authored-By: Claude Fable 5 --- pipeline/dags/school_data_pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline/dags/school_data_pipeline.py b/pipeline/dags/school_data_pipeline.py index 2d9459a..b8f85da 100644 --- a/pipeline/dags/school_data_pipeline.py +++ b/pipeline/dags/school_data_pipeline.py @@ -83,7 +83,7 @@ print(f'Validation passed: {{count}} GIAS rows') dbt_build = BashOperator( task_id="dbt_build", - bash_command=f"cd {PIPELINE_DIR}/transform && {DBT_BIN} build --profiles-dir . --target production --select stg_gias_establishments+ stg_gias_links+ --exclude int_ks2_with_lineage+ int_ks4_with_lineage+", + bash_command=f"cd {PIPELINE_DIR}/transform && {DBT_BIN} build --profiles-dir . --target production --select stg_gias_establishments+ stg_gias_links+ gias_code_names+ --exclude int_ks2_with_lineage+ int_ks4_with_lineage+", ) sync_typesense = BashOperator(