Skip to content

Commit

Permalink
removing checking for invalid shapes for ci testing
Browse files Browse the repository at this point in the history
  • Loading branch information
sphawes committed Oct 14, 2022
1 parent 06f3d85 commit 8240eaa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/scripts/export-stl.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,9 @@ def process_file(cad_file: Path):
print(f"\tRecompute of model took {total:3f}s")

# Now check for any invalid shapes
for obj in doc.Objects:
if 'Invalid' in obj.State:
raise Exception(f"Shape '{obj.Name}' in model '{cad_file.name}' is invalid")
# for obj in doc.Objects:
# if 'Invalid' in obj.State:
# raise Exception(f"Shape '{obj.Name}' in model '{cad_file.name}' is invalid")

shape = body.Shape.copy(False)

Expand Down

0 comments on commit 8240eaa

Please sign in to comment.