File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed
Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 1818_DEFAULT_VARS = {
1919 "disable_dbt_invocation_autoupload" : True ,
2020 "disable_dbt_artifacts_autoupload" : True ,
21- "columns_upload_strategy" : ' none' ,
21+ "columns_upload_strategy" : " none" ,
2222 "disable_run_results" : True ,
2323 "disable_freshness_results" : True ,
2424 "debug_logs" : True ,
Original file line number Diff line number Diff line change 3333)
3434@Parametrization .case (
3535 name = "only_with_description" ,
36- columns_upload_strategy = ' enriched_only' ,
36+ columns_upload_strategy = " enriched_only" ,
3737 expected_columns = ["with_description" ],
3838)
3939@Parametrization .case (
4040 name = "all" ,
41- columns_upload_strategy = ' all' ,
41+ columns_upload_strategy = " all" ,
4242 expected_columns = [
4343 "with_description" ,
4444 "without_description" ,
@@ -52,9 +52,7 @@ def test_flatten_table_columns(
5252 expected_columns : List [str ],
5353) -> None :
5454 if columns_upload_strategy is not None :
55- dbt_project .dbt_runner .vars [
56- "columns_upload_strategy"
57- ] = columns_upload_strategy
55+ dbt_project .dbt_runner .vars ["columns_upload_strategy" ] = columns_upload_strategy
5856 flattened_columns = json .loads (
5957 dbt_project .dbt_runner .run_operation (
6058 "elementary.flatten_table_columns" , macro_args = {"table_node" : TABLE_NODE }
You can’t perform that action at this time.
0 commit comments