Skip to content

Commit

Permalink
[Misc] Exclude a test from pitest since it's a false positive. See ST…
Browse files Browse the repository at this point in the history
  • Loading branch information
vmassol committed Jan 31, 2020
1 parent 08e84aa commit d02e9f9
Showing 1 changed file with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -166,5 +166,29 @@
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<!-- Exclude tests breaking pitest, see https://github.com/STAMP-project/pitest-descartes/issues/117
TODO: remove when fixed -->
<plugin>
<groupId>org.pitest</groupId>
<artifactId>pitest-maven</artifactId>
<executions>
<execution>
<id>pitest-check</id>
<goals>
<goal>mutationCoverage</goal>
</goals>
<configuration>
<excludedTestClasses>
<param>org.xwiki.**.SystemHTTPProxyTest</param>
</excludedTestClasses>
<!--skip>true</skip-->
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>

0 comments on commit d02e9f9

Please sign in to comment.