-
-
Notifications
You must be signed in to change notification settings - Fork 655
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
[question] Is there a way to always have 0 as the exit code regardless of test results? #59
Comments
There is the You could set it as a default (before the command line parsing) or as an override (after the command line parsing) with Does this help? Also note that the calls to |
Hey, thanks. Yes that indeed did the trick. In case someone else also cares, I now have this:
|
I need an option to define exit code value. I am personally interest in setting it to zero, independent from test results, but would be happy to be able to set it for success and failure separately.
Background:
I am currently using this framework within emacs org-mode in an source code block, which can be executed within emacs, adding the result into the document. This, however, does not work if the exit code is not zero, because noting is added. But exactly that case would be of interest.
Example of what I need to do:
The text was updated successfully, but these errors were encountered: