This is an automated email from the ASF dual-hosted git repository.
jamesbognar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/juneau.git
The following commit(s) were added to refs/heads/master by this push:
new c9d380738f Test(utest): make benchmark-tagged tests non-gating in
surefire.
c9d380738f is described below
commit c9d380738f060a552fcc79b2733233404073ab14
Author: James Bognar <[email protected]>
AuthorDate: Sun May 31 13:08:32 2026 -0400
Test(utest): make benchmark-tagged tests non-gating in surefire.
Exclude benchmark-tagged tests from both core and container Surefire
executions so timing-sensitive benchmark assertions do not gate normal CI runs.
Co-authored-by: Cursor <[email protected]>
---
juneau-utest/pom.xml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/juneau-utest/pom.xml b/juneau-utest/pom.xml
index 04716f79fe..1c39bf94f8 100644
--- a/juneau-utest/pom.xml
+++ b/juneau-utest/pom.xml
@@ -718,7 +718,7 @@
<execution>
<id>default-test</id>
<configuration>
-
<excludedGroups>container</excludedGroups>
+
<excludedGroups>container,benchmark</excludedGroups>
<reportsDirectory>${project.build.directory}/surefire-reports/core</reportsDirectory>
</configuration>
</execution>
@@ -730,6 +730,7 @@
</goals>
<configuration>
<groups>container</groups>
+
<excludedGroups>benchmark</excludedGroups>
<reportsDirectory>${project.build.directory}/surefire-reports/container</reportsDirectory>
</configuration>
</execution>