-
Notifications
You must be signed in to change notification settings - Fork 129
use custom file format for polygon tests #913
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #913 +/- ##
==========================================
- Coverage 91.84% 88.40% -3.44%
==========================================
Files 37 62 +25
Lines 4976 8660 +3684
Branches 0 1059 +1059
==========================================
+ Hits 4570 7656 +3086
- Misses 406 1004 +598 ☔ View full report in Codecov by Sentry. |
Probably need to use https://emscripten.org/docs/porting/files/packaging_files.html#packaging-files for wasm. Will try it later tonight. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, that's a significant improvement! Remember to undo my change to manifold.yml
that's skipping the zebra tests on windows.
I have no idea why the formatting thing is now failing... |
9022d1d
to
47c6e64
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
@@ -144,12 +144,12 @@ void PrintFailure(const std::exception &e, const PolygonsIdx &polys, | |||
std::cout << "-----------------------------------" << std::endl; | |||
std::cout << "Triangulation failed! Precision = " << precision << std::endl; | |||
std::cout << e.what() << std::endl; | |||
if (triangles.size() > 1000) { | |||
if (triangles.size() > 1000 && !PolygonParams().verbose) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Fixes #910
see #911 (comment)