Skip to content

Commit 80c18f4

Browse files
committed
Removed specific conformal check for now
1 parent dd6501c commit 80c18f4

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

tests/test_meshes.py

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,9 @@ def test_imprinted_assembly():
132132
assert cur_name in ["shell_inner-right", "insert_outer-right", "in_contact"]
133133

134134

135-
def test_conformal_mesh_compliance():
135+
def test_nested_sphere_assembly():
136136
"""
137-
Tests to make sure the meshing process produces a conformal mesh.
137+
Tests to make sure the the nested sphere example works.
138138
"""
139139

140140
def _check_physical_groups():
@@ -151,10 +151,6 @@ def _check_physical_groups():
151151

152152
assert cur_name in ["inner_sphere", "middle_sphere"]
153153

154-
# Check to make sure there are physical groups for the surfaces
155-
physical_groups = gmsh.model.getPhysicalGroups(2)
156-
# assert len(physical_groups) > 0, "There should be some physical groups for surfaces"
157-
158154
# Create a basic assembly
159155
assy = generate_nested_spheres()
160156

@@ -175,6 +171,3 @@ def _check_physical_groups():
175171

176172
# Ensure that there are physical groups
177173
_check_physical_groups()
178-
179-
# assert False
180-
# gmsh.fltk.run()

0 commit comments

Comments
 (0)