[java-idp-integration-tests] branch main updated: Allow console test output
Tom Zeller
tzeller at dragonacea.biz
Tue Dec 19 14:46:13 UTC 2023
This is an automated email from the git hooks/post-receive script.
tzeller pushed a commit to branch main
in repository java-idp-integration-tests.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-integration-tests.git;a=commit;h=4e2f2fa324665aa64684d68d83cf348152bc9315
The following commit(s) were added to refs/heads/main by this push:
new 4e2f2fa Allow console test output
4e2f2fa is described below
commit 4e2f2fa324665aa64684d68d83cf348152bc9315
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Tue Dec 19 08:46:03 2023 -0600
Allow console test output
Override parent POM to allow test output from the Maven Surefire Plugin
to go to console instead of always to file.
Possibly useful for troubleshooting CI test failures.
---
pom.xml | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/pom.xml b/pom.xml
index 6c6cf87..3bc7567 100644
--- a/pom.xml
+++ b/pom.xml
@@ -47,6 +47,9 @@
<svn.relative.location>java-idp-integration-tests</svn.relative.location>
<idp-conf.artifactId>idp-conf-impl</idp-conf.artifactId>
+
+ <!-- Redirect test output to file target/surefire-reports/testName-output.txt -->
+ <redirectTestOutputToFile>true</redirectTestOutputToFile>
</properties>
<dependencyManagement>
@@ -279,6 +282,14 @@
</filesets>
</configuration>
</plugin>
+ <!-- Override parent POM test output - console or file. -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <redirectTestOutputToFile>${redirectTestOutputToFile}</redirectTestOutputToFile>
+ </configuration>
+ </plugin>
</plugins>
</build>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list