1212def test_spatial_selection_select_nodes (allkindofcomplexity ):
1313 simulation = post .load_simulation (allkindofcomplexity )
1414 selection = SpatialSelection ()
15+ selection ._selection .progress_bar = False
1516 selection .select_nodes ([1 , 2 , 3 ])
1617 scoping = selection ._evaluate_on (simulation )
1718 assert scoping .location == post .locations .nodal
@@ -21,6 +22,7 @@ def test_spatial_selection_select_nodes(allkindofcomplexity):
2122def test_spatial_selection_select_elements (allkindofcomplexity ):
2223 simulation = post .load_simulation (allkindofcomplexity )
2324 selection = SpatialSelection ()
25+ selection ._selection .progress_bar = False
2426 selection .select_elements ([1 , 2 , 3 , 4 ])
2527 scoping = selection ._evaluate_on (simulation )
2628 assert scoping .location == post .locations .elemental
@@ -32,6 +34,7 @@ def test_spatial_selection_select_elements(allkindofcomplexity):
3234def test_spatial_selection_select_named_selection (allkindofcomplexity ):
3335 simulation = post .load_simulation (allkindofcomplexity )
3436 selection = SpatialSelection ()
37+ selection ._selection .progress_bar = False
3538 selection .select_named_selection (
3639 simulation .mesh .named_selections .keys ()[0 ],
3740 location = post .selection .locations .nodal ,
@@ -68,13 +71,15 @@ def fluent_simulation(self):
6871
6972 def test_spatial_selection_select_faces (self , fluent_simulation ):
7073 selection = SpatialSelection ()
74+ selection ._selection .progress_bar = False
7175 selection .select_faces (fluent_simulation .mesh .face_ids )
7276 scoping = selection ._evaluate_on (fluent_simulation )
7377 assert scoping .location == post .locations .faces
7478 assert np .allclose (scoping .ids , fluent_simulation .mesh .face_ids )
7579
7680 def test_spatial_selection_select_nodes_of_faces (self , fluent_simulation ):
7781 selection = SpatialSelection ()
82+ selection ._selection .progress_bar = False
7883 face_0 = fluent_simulation .mesh .faces [0 ]
7984 selection .select_nodes_of_faces (
8085 faces = [face_0 .id ],
@@ -86,6 +91,7 @@ def test_spatial_selection_select_nodes_of_faces(self, fluent_simulation):
8691
8792 def test_spatial_selection_select_faces_of_elements (self , fluent_simulation ):
8893 selection = SpatialSelection ()
94+ selection ._selection .progress_bar = False
8995 elem_0 = fluent_simulation .mesh .elements [0 ]
9096 selection .select_faces_of_elements (
9197 elements = [elem_0 .id ],
0 commit comments