-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Only log failed junit tests in travis #3510
Comments
I actually liked the output since it shows that we have a lot to improve 😄 In my opinion, a successful test should not log any errors (and actually also no warnings). But currently we have a lot of error-catcher that log and then rethrow the exception, witch lead to these verbose logs. I would attack it at the root, i.e. fix the code. |
@Siedlerchr Could you provide screenshots of the logs or a pointer? So that quick-readers get an impression? - On Windows, I recommend snipaste. |
@koppor It's on every Travis build, e.g. https://travis-ci.org/JabRef/jabref/jobs/314497777 and look at the output of the "check" job. |
Maybe we can add it to the .gitignore files and so you can locally enable you debug mode and it won't affect the remote (travis) one |
Thank you for your report 👍 |
Currently, all stuff from all tests is logged and printed out.
This makes it really hard to identify real failed tests, because some test throw exceptions, which are expected.
Nonetheless the internal JabRef logger log4j2 logs all this stuff, which makes it hard to find the real probelmatic issue
The text was updated successfully, but these errors were encountered: