This repository was archived by the owner on May 17, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ def get_datadiff_variables(self) -> dict:
68
68
69
69
def get_models (self ):
70
70
with open (self .project_dir / RUN_RESULTS_PATH ) as run_results :
71
+ logger .info (f"Parsing file { RUN_RESULTS_PATH } " )
71
72
run_results_dict = json .load (run_results )
72
73
run_results_obj = self .parse_run_results (run_results = run_results_dict )
73
74
@@ -93,18 +94,21 @@ def get_models(self):
93
94
94
95
def get_manifest_obj (self ):
95
96
with open (self .project_dir / MANIFEST_PATH ) as manifest :
97
+ logger .info (f"Parsing file { MANIFEST_PATH } " )
96
98
manifest_dict = json .load (manifest )
97
99
manifest_obj = self .parse_manifest (manifest = manifest_dict )
98
100
return manifest_obj
99
101
100
102
def get_project_dict (self ):
101
103
with open (self .project_dir / PROJECT_FILE ) as project :
104
+ logger .info (f"Parsing file { PROJECT_FILE } " )
102
105
project_dict = self .yaml .safe_load (project )
103
106
return project_dict
104
107
105
108
def get_connection_creds (self ) -> Tuple [Dict [str , str ], str ]:
106
109
profiles_path = self .profiles_dir / PROFILES_FILE
107
110
with open (profiles_path ) as profiles :
111
+ logger .info (f"Parsing file { profiles_path } " )
108
112
profiles = self .yaml .safe_load (profiles )
109
113
110
114
dbt_profile_var = self .project_dict .get ("profile" )
You can’t perform that action at this time.
0 commit comments