[
https://issues.apache.org/jira/browse/SUREFIRE-1747?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17023949#comment-17023949
]
Tibor Digana commented on SUREFIRE-1747:
----------------------------------------
[~atokle]
Don't be personal! I was logical, see my message again.
If you run two commands
{{mvn clean verify -P repackage-before}}
and
{{mvn verify}}
the tests run but the statistics are zero.
I do not know what these two annotations do in the JUnit5 reports via
{{TestExecutionListener}}:
{code:java}
@SpringBootTest
@AutoConfigureMockMvc
{code}
Maybe Spring implements some dynamic tests discovery which is not supported yet
in surefire.
You should contribute in the project and debug the {{RunListenerAdapter}} of
Failsafe/Surefire and you may see the root cause but now it is not visible to
anyone.
> spring-boot-maven-plugin with goal repackage make tests to silently not
> execute
> -------------------------------------------------------------------------------
>
> Key: SUREFIRE-1747
> URL: https://issues.apache.org/jira/browse/SUREFIRE-1747
> Project: Maven Surefire
> Issue Type: Bug
> Components: Maven Failsafe Plugin
> Affects Versions: 3.0.0-M4
> Reporter: Atle Tokle
> Assignee: Tibor Digana
> Priority: Major
> Attachments: demo.zip
>
>
> When integration-testing a spring boot application, and also having this
> plugin:
> {code:xml}
> <plugin>
> <groupId>org.springframework.boot</groupId>
> <artifactId>spring-boot-maven-plugin</artifactId>
> <executions>
> <execution>
> <goals>
> <goal>repackage</goal>
> </goals>
> </execution>
> </executions>
> </plugin>
> {code}
> the test is not executed by maven-failsafe-plugin. And no errors or warnings
> is displayed to indicate that code is not tested.
> When configuring phace like this they are executed
> {code:xml}
> <plugin>
> <groupId>org.springframework.boot</groupId>
> <artifactId>spring-boot-maven-plugin</artifactId>
> <executions>
> <execution>
> <phase>post-integration-test</phase>
> <goals>
> <goal>repackage</goal>
> </goals>
> </execution>
> </executions>
> </plugin>
> {code}
> I found the answer here
> https://stackoverflow.com/questions/50705270/mvn-spring-boot-plugin-breaks-integration-testing
> But the build should either break or tests run.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)