feat: expand testing

This commit is contained in:
Stijnvandenbroek
2026-03-04 22:18:30 +00:00
parent 0d2706a93e
commit 0b9b408714
22 changed files with 1266 additions and 54 deletions

View File

@@ -0,0 +1,13 @@
"""Elementary schedules."""
from dagster import DefaultScheduleStatus, ScheduleDefinition
from data_platform.jobs.elementary import elementary_refresh_job
elementary_refresh_schedule = ScheduleDefinition(
name="elementary_refresh_schedule",
job=elementary_refresh_job,
cron_schedule="0 9 * * *",
description="Regenerate the Elementary report daily at 09:00 UTC.",
default_status=DefaultScheduleStatus.RUNNING,
)