Skip to content

Commit

Permalink
exit test if triangle/meshpy not installed
Browse files Browse the repository at this point in the history
  • Loading branch information
mikedh committed Oct 26, 2018
1 parent 5c3e56b commit e1d5af6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions tests/test_creation.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,8 @@ def test_triangulate_plumbing(self):
"""
Check the plumbing of path triangulation
"""
if len(self.engines) == 0:
return
p = g.get_mesh('2D/ChuteHolderPrint.DXF')
v, f = p.triangulate()
check_triangulation(v, f, p.area)
Expand Down
2 changes: 1 addition & 1 deletion trimesh/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.35.11'
__version__ = '2.35.12'

0 comments on commit e1d5af6

Please sign in to comment.