Skip to content

Commit

Permalink
[python] correction of pb on coverage configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
dedece35 committed Apr 6, 2023
1 parent 96f3c08 commit d368811
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions python-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,30 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<configuration>
<!-- TODO DDC : checker si options nécessaires (idem sur autres plugins) -->
<output>file</output>
<append>false</append>
</configuration>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit d368811

Please sign in to comment.