You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@netbeans.apache.org by GitBox <gi...@apache.org> on 2022/05/09 13:43:10 UTC

[GitHub] [netbeans] neilcsmith-net commented on issue #4089: Integration tests not started

neilcsmith-net commented on issue #4089:
URL: https://github.com/apache/netbeans/issues/4089#issuecomment-1121120747

   This seems related to #3470 Quick look suggests this can be fixed by configuring (eg.) failsafe plugin to run with goal `integration-test` (below) or altering the action in the project to call `failsafe:integration-test`.  Would be good if this worked out of the box.  Maybe default pom needs adapting or [default actions](https://github.com/apache/netbeans/blob/master/java/maven/src/org/netbeans/modules/maven/execute/defaultActionMappings.xml) need looking at (unit tests call `surefire:test`)?
   
   cc/ @matthiasblaesing @ebarboni - adding NB14 milestone for now.
   
   ```
   <plugin>
     <artifactId>maven-failsafe-plugin</artifactId>
     <version>2.22.2</version>
     <executions>
       <execution>
         <goals>
           <goal>integration-test</goal>
         </goals>
       </execution>
     </executions>
   </plugin>
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists