This is an automated email from the ASF dual-hosted git repository. tibordigana pushed a commit to branch tibor17-gh-workflows-path in repository https://gitbox.apache.org/repos/asf/maven-surefire.git
commit 3567b5d555aa0402b6e1cd583a00fc46628c2872 Author: tibordigana <[email protected]> AuthorDate: Wed Nov 12 17:05:56 2025 +0100 Forced to generate the build archive file. --- .../src/test/java/org/apache/maven/surefire/its/ConsoleOutputIT.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/surefire-its/src/test/java/org/apache/maven/surefire/its/ConsoleOutputIT.java b/surefire-its/src/test/java/org/apache/maven/surefire/its/ConsoleOutputIT.java index e9e368240..e52f05b51 100644 --- a/surefire-its/src/test/java/org/apache/maven/surefire/its/ConsoleOutputIT.java +++ b/surefire-its/src/test/java/org/apache/maven/surefire/its/ConsoleOutputIT.java @@ -58,6 +58,11 @@ public static Iterable<Object[]> data() { @SuppressWarnings("checkstyle:visibilitymodifier") public String profileId; + @Test + public void testForcedToFail() { + throw new RuntimeException(); + } + @Test public void properNewlinesAndEncodingWithDefaultEncodings() throws Exception { OutputValidator outputValidator = unpack().forkOnce().executeTest();
