@@ -184,12 +184,12 @@ def test_geode_object_output_extensions():
184184def test_get_inspector_children ():
185185 for geode_object , value in geode_objects .geode_objects_dict ().items ():
186186 if "inspector" in value :
187- print (f"\n { geode_object = } " )
187+ print (f"\n { geode_object = } " , flush = True )
188188 input_extensions = geode_functions .geode_object_input_extensions (
189189 geode_object
190190 )
191191 for input_extension in input_extensions :
192- print (f"\t { input_extension = } " )
192+ print (f"\t { input_extension = } " , flush = True )
193193 file_absolute_path = os .path .join (
194194 data_folder , f"test.{ input_extension } "
195195 )
@@ -199,9 +199,9 @@ def test_get_inspector_children():
199199 has_missing_files = missing_files .has_missing_files ()
200200 if has_missing_files :
201201 mandatory_files = missing_files .mandatory_files
202- print (f"\t \t { mandatory_files = } " )
202+ print (f"\t \t { mandatory_files = } " , flush = True )
203203 additional_files = missing_files .additional_files
204- print (f"\t \t { additional_files = } " )
204+ print (f"\t \t { additional_files = } " , flush = True )
205205 file_absolute_path = os .path .join (
206206 data_folder , f"test.{ input_extension } "
207207 )
@@ -212,11 +212,10 @@ def test_get_inspector_children():
212212 inspection_tree = [
213213 geode_functions .get_inspector_children (inspection_result )
214214 ]
215- print (f"\t \t { inspection_tree = } " )
215+ print (f"\t \t { inspection_tree = } " , flush = True )
216216 assert type (inspection_tree ) is list
217217 assert type (inspection_tree [0 ]) is dict
218218
219-
220219def test_filter_geode_objects ():
221220 filters_list = ["" , "crs" , "inspector" , None ]
222221
0 commit comments