This is an automated email from the ASF dual-hosted git repository.

mawiesne pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/opennlp.git


The following commit(s) were added to refs/heads/main by this push:
     new f1044a023 OPENNLP-1843: Override surefire skip so eval tests run again 
(#1082)
f1044a023 is described below

commit f1044a02392bd5ce3c2a05a95f9a8f3ae95770c9
Author: Kristian Rickert <[email protected]>
AuthorDate: Fri Jun 12 16:06:16 2026 -0400

    OPENNLP-1843: Override surefire skip so eval tests run again (#1082)
    
    The base build of opennlp-eval-tests disables surefire with skip=true,
    and neither the eval-tests nor the high-memory-tests profile sets it
    back to false. Maven merges the profile configuration into the base
    configuration, so the module compiled its eval sources but executed
    zero tests, even with -Peval-tests. Set skip=false in both profiles.
---
 opennlp-eval-tests/pom.xml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/opennlp-eval-tests/pom.xml b/opennlp-eval-tests/pom.xml
index cc9372d2d..981a2edbf 100644
--- a/opennlp-eval-tests/pom.xml
+++ b/opennlp-eval-tests/pom.xml
@@ -138,6 +138,7 @@
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-surefire-plugin</artifactId>
             <configuration>
+              <skip>false</skip>
               <argLine>-Xmx4g</argLine>
               <forkCount>${opennlp.forkCount}</forkCount>
               <failIfNoSpecifiedTests>false</failIfNoSpecifiedTests>
@@ -158,6 +159,7 @@
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-surefire-plugin</artifactId>
             <configuration>
+              <skip>false</skip>
               <argLine>-Xmx20g</argLine>
               <forkCount>1</forkCount>
               <includes>

Reply via email to