-
Notifications
You must be signed in to change notification settings - Fork 87
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
Record maven-invoker-plugin
failures via junit
rather than console
#301
Conversation
</properties> | ||
</profile> | ||
<profile> | ||
<id>specific-tests</id> |
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.
For local devs.
@@ -436,5 +431,28 @@ | |||
</plugins> | |||
</build> | |||
</profile> | |||
<profile> | |||
<id>all-tests</id> |
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.
For CI. Inspired by a similar profile in pom
/ plugin-pom
.
Lots of noise from MRM like
I suspect this is caused by some old dependencies requesting a range dependency 😠 on Stapler, but have not tracked it down yet. |
Inspired by a change in jenkinsci/plugin-pom#508. Rather than streaming all the IT logs to the Jenkins build log, capture them in JUnit-format test results instead, and treat any failures as an unstable build. Should make it easier to develop #66 and the like.