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
@@ -91,18 +92,21 @@ def get_models(self):
91
92
92
93
def get_manifest_obj (self ):
93
94
with open (self .project_dir / MANIFEST_PATH ) as manifest :
95
+ logger .info (f"Parsing file { MANIFEST_PATH } " )
94
96
manifest_dict = json .load (manifest )
95
97
manifest_obj = self .parse_manifest (manifest = manifest_dict )
96
98
return manifest_obj
97
99
98
100
def get_project_dict (self ):
99
101
with open (self .project_dir / PROJECT_FILE ) as project :
102
+ logger .info (f"Parsing file { PROJECT_FILE } " )
100
103
project_dict = self .yaml .safe_load (project )
101
104
return project_dict
102
105
103
106
def get_connection_creds (self ) -> Tuple [Dict [str , str ], str ]:
104
107
profiles_path = self .profiles_dir / PROFILES_FILE
105
108
with open (profiles_path ) as profiles :
109
+ logger .info (f"Parsing file { profiles_path } " )
106
110
profiles = self .yaml .safe_load (profiles )
107
111
108
112
dbt_profile_var = self .project_dict .get ("profile" )
You can’t perform that action at this time.
0 commit comments