You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ignoring all errors may hide important information from users / developers.
#45 fixes one instance of this (though, with-demoted-errors is not a complete fix).
As for the other remaining instance, the code seems to currently rely on it (i.e. errors occur as part of normal functioning). The code should be updated to handle error conditions explicitly in the place where they may occur; then, ignore-errors can be removed.
The text was updated successfully, but these errors were encountered:
- Use call-process instead of relying on a shell to perform argument
splitting
This will also fix running undercover in paths with spaces or
shell special characters.
- Don't use shut-up
All uses of this package should eventually be removed.
Also see issue undercover-el#49.
- Show curl output
It includes useful output, namely the Coveralls job ID and an URL to
the coverage report page.
- Actually fail if the upload fails
The old code would report that everything is OK even on a connection
or server error.
Ignoring all errors may hide important information from users / developers.
#45 fixes one instance of this (though,
with-demoted-errors
is not a complete fix).As for the other remaining instance, the code seems to currently rely on it (i.e. errors occur as part of normal functioning). The code should be updated to handle error conditions explicitly in the place where they may occur; then,
ignore-errors
can be removed.The text was updated successfully, but these errors were encountered: