-
Notifications
You must be signed in to change notification settings - Fork 72
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
testing: don't print the output of marimo unless there was an error #2836
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2836 +/- ##
==========================================
- Coverage 89.83% 89.83% -0.01%
==========================================
Files 397 397
Lines 49203 49203
Branches 7551 7551
==========================================
- Hits 44202 44200 -2
- Misses 3807 3808 +1
- Partials 1194 1195 +1 ☔ View full report in Codecov by Sentry. |
|
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.
LGTM and works on my machine. Just a minor comment 👍
error_message=$$(python3 "$$file" 2>&1) || { \ | ||
echo "Error running $$file"; \ | ||
echo "$$error_message"; \ | ||
exit 1; \ |
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.
Can we make it s.t. it does not fail on the first failing one, but runs all of them and then reports the errors or something?
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.
No description provided.