From 28a381f4db9ac72324ca628f755696b1bb70516b Mon Sep 17 00:00:00 2001 From: Kshitij Aranke Date: Tue, 1 Oct 2024 17:05:53 +0100 Subject: [PATCH] [tidy_first] Set default for STATE_MODIFIED_COMPARE_VARS flag, mark TestProjInfo as not a test class --- core/dbt/cli/flags.py | 1 + core/dbt/tests/fixtures/project.py | 2 ++ 2 files changed, 3 insertions(+) diff --git a/core/dbt/cli/flags.py b/core/dbt/cli/flags.py index 2b957ed9465..d3dabded7b0 100644 --- a/core/dbt/cli/flags.py +++ b/core/dbt/cli/flags.py @@ -37,6 +37,7 @@ "STRICT_MODE": False, "STORE_FAILURES": False, "INTROSPECT": True, + "STATE_MODIFIED_COMPARE_VARS": False, } DEPRECATED_PARAMS = { diff --git a/core/dbt/tests/fixtures/project.py b/core/dbt/tests/fixtures/project.py index a12638b16a2..2f458c5b95e 100644 --- a/core/dbt/tests/fixtures/project.py +++ b/core/dbt/tests/fixtures/project.py @@ -428,6 +428,8 @@ def test_config(): # from the pytest fixtures that may be needed in the test functions, including # a 'run_sql' method. class TestProjInfo: + __test__ = False + def __init__( self, project_root,