Skip to content

Commit 75a0962

Browse files
authored
[tidy_first] Set default for STATE_MODIFIED_COMPARE_VARS flag, mark TestProjInfo as not a test class (#10805)
1 parent 5e9f1b5 commit 75a0962

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

core/dbt/cli/flags.py

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
"STRICT_MODE": False,
3838
"STORE_FAILURES": False,
3939
"INTROSPECT": True,
40+
"STATE_MODIFIED_COMPARE_VARS": False,
4041
}
4142

4243
DEPRECATED_PARAMS = {

core/dbt/tests/fixtures/project.py

+2
Original file line numberDiff line numberDiff line change
@@ -428,6 +428,8 @@ def test_config():
428428
# from the pytest fixtures that may be needed in the test functions, including
429429
# a 'run_sql' method.
430430
class TestProjInfo:
431+
__test__ = False
432+
431433
def __init__(
432434
self,
433435
project_root,

0 commit comments

Comments
 (0)