From a7e4b714a9cd192879f7cdeb6b268be0598f2ed0 Mon Sep 17 00:00:00 2001 From: Erica Faulkenberry Date: Fri, 4 Oct 2024 13:22:46 -0500 Subject: [PATCH] Add source freshness to the list fct_sources_without_freshness is used in the coalesce workshop but is missing from the list. it's the first error listed, so it would be best if it could be found in the docs. --- docs/rules.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/rules.md b/docs/rules.md index adf49269..a6f814ed 100644 --- a/docs/rules.md +++ b/docs/rules.md @@ -19,8 +19,9 @@ hide: |Modeling |[Root Models](../rules/modeling/#root-models) |`fct_root_models`| |Modeling |[Staging Models Dependent on Downstream Models](../rules/modeling/#staging-models-dependent-on-downstream-models) |`fct_staging_dependent_on_marts_or_intermediate`| |Modeling |[Unused Sources](../rules/modeling/#unused-sources) |`fct_unused_sources`| -|Modeling |[Models with Too Many Joins](../rules/modeling/#models-with-too-many-joins) |`fct_too_many_joins`| +|Modeling |[Models with Too Many Joins](../rules/modeling/#models-with-too-many-joins) |`fct_too_many_joins`| |Testing |[Missing Primary Key Tests](../rules/testing/#missing-primary-key-tests) |`fct_missing_primary_key_tests`| +|Testing |[Missing Source Freshness](../rules/testing/#missing-source-freshness) |`fct_sources_without_freshness`| |Testing |[Test Coverage](../rules/testing/#test-coverage) |`fct_test_coverage`| |Documentation |[Undocumented Models](../rules/documentation/#undocumented-models) |`fct_undocumented_models`| |Documentation |[Documentation Coverage](../rules/documentation/#documentation-coverage) |`fct_documentation_coverage`|