Closed natkrish closed 5 years ago
Hi @natkrish ! You can aggregate all these results by maven-cucumber-reporting plugin
<plugin>
<groupId>net.masterthought</groupId>
<artifactId>maven-cucumber-reporting</artifactId>
<version>${maven-cucumber-reporting.version}</version>
<executions>
<execution>
<id>execution</id>
<phase>verify</phase>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<projectName>vdr-tests</projectName>
<outputDirectory>${project.build.directory}/cucumber-parallel/cucumber-html-reports</outputDirectory>
<cucumberOutput>${project.build.directory}/cucumber-parallel/</cucumberOutput>
<parallelTesting>true</parallelTesting>
</configuration>
</execution>
</executions>
</plugin>
Hi @natkrish ,
You can check out below plugin as well.
Hi, I currently, I have the following set up in my pom. However, upon running them using mvn clean compile test - the tests run e2e and also it generates multiple .json/.html file in the above folder. But I need one single report with all the test runs. Can you explain on how I can achieve this?