Skip to content

Commit e1d5af6

Browse files
committed
exit test if triangle/meshpy not installed
1 parent 5c3e56b commit e1d5af6

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

tests/test_creation.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,8 @@ def test_triangulate_plumbing(self):
157157
"""
158158
Check the plumbing of path triangulation
159159
"""
160+
if len(self.engines) == 0:
161+
return
160162
p = g.get_mesh('2D/ChuteHolderPrint.DXF')
161163
v, f = p.triangulate()
162164
check_triangulation(v, f, p.area)

trimesh/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.35.11'
1+
__version__ = '2.35.12'

0 commit comments

Comments
 (0)