@@ -28,6 +28,7 @@ def test_import_yml_no_anchor():
2828 "settings" : {"threads" : 4 , "target_name" : "production" },
2929 "execution" : {"timeout_seconds" : 0 },
3030 "deferring_job_definition_id" : None ,
31+ "deferring_environment_id" : None ,
3132 "run_generate_sources" : True ,
3233 "execute_steps" : [
3334 "dbt run --select model1+" ,
@@ -58,7 +59,8 @@ def test_import_yml_no_anchor():
5859 "name" : "CI/CD run" ,
5960 "settings" : {"threads" : 4 , "target_name" : "TEST" },
6061 "execution" : {"timeout_seconds" : 0 },
61- "deferring_job_definition_id" : 43791 ,
62+ "deferring_job_definition_id" : None ,
63+ "deferring_environment_id" : 43791 ,
6264 "run_generate_sources" : False ,
6365 "execute_steps" : [
6466 "dbt run-operation clone_all_production_schemas" ,
@@ -119,6 +121,7 @@ def test_import_yml_anchors():
119121 "settings" : {"threads" : 4 , "target_name" : "production" },
120122 "execution" : {"timeout_seconds" : 0 },
121123 "deferring_job_definition_id" : None ,
124+ "deferring_environment_id" : None ,
122125 "run_generate_sources" : True ,
123126 "execute_steps" : [
124127 "dbt run --select model1+" ,
@@ -151,6 +154,7 @@ def test_import_yml_anchors():
151154 "settings" : {"threads" : 4 , "target_name" : "TEST" },
152155 "execution" : {"timeout_seconds" : 0 },
153156 "deferring_job_definition_id" : None ,
157+ "deferring_environment_id" : None ,
154158 "run_generate_sources" : True ,
155159 "execute_steps" : [
156160 "dbt run-operation clone_all_production_schemas" ,
0 commit comments