smilnik
12 days agoOccasional Contributor
ReadyApI/Soapui junit report with maven
i'am trying to implement CI for my test automation project using maven with bamboo. I need to generate the junit report to parse it in bamboo. I'am using this POM: `
<build> <plugins> <plugin> <groupId>com.smartbear.soapui</groupId> <artifactId><artifactId>soapui-maven-plugin</artifactId></artifactId> <version>4.6.1</version> <executions> <execution> <phase>test</phase> <goals> <!-- Do not change. Commands the Maven plugin to run a functional test. --> <goal>test</goal> </goals> <configuration> <projectFile>${soapui.projectfile}</projectFile> <exportwAll>true</exportwAll> <printReport>true</printReport> <testFailIgnore>true</testFailIgnore> <outputFolder>${project.build.directory}/Junit</outputFolder> <junitReport>true</junitReport> </configuration> </execution> </executions> </plugin> </plugins> </build>
but the junit report generated is like report for confi
When i use the Junit parser after build in test part i have limited information :
We need a detailled test report with succes and failed tests.
Thank you in advance for your help.
Best regards,
Smilnik `