From 07e2a64d345b6a4a0a0a3da943e36c95d2025075 Mon Sep 17 00:00:00 2001 From: Themis Valtinos <73662635+themisvaltinos@users.noreply.github.com> Date: Thu, 9 Oct 2025 19:31:39 +0300 Subject: [PATCH] Chore: Add tag assertion in selectors tag test --- tests/dbt/cli/test_selectors.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/dbt/cli/test_selectors.py b/tests/dbt/cli/test_selectors.py index 3d50fe6ed2..a2c19057eb 100644 --- a/tests/dbt/cli/test_selectors.py +++ b/tests/dbt/cli/test_selectors.py @@ -215,6 +215,7 @@ def test_exclude_by_dbt_names( ctx = jaffle_shop_duckdb_context ctx.load() assert '"jaffle_shop"."main"."agg_orders"' in ctx.models + assert ctx.get_model('"jaffle_shop"."main"."agg_orders"').tags == ["agg"] selector = ctx._new_selector() assert isinstance(selector, DbtSelector)