Skip to content

Commit

Permalink
TRUNK-4415 Excluded tests failing with JaCoCo
Browse files Browse the repository at this point in the history
  • Loading branch information
rkorytkowski committed Jul 4, 2014
1 parent d51e43a commit cb8b3b2
Showing 1 changed file with 23 additions and 5 deletions.
28 changes: 23 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -940,6 +940,29 @@
<customArgLineForTesting>-Djub.consumers=CONSOLE,H2 -Djub.db.file=target/benchmarks/results -Djub.charts.dir=target/benchmarks</customArgLineForTesting>
</properties>
</profile>
<profile>
<id>sonar</id>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<!-- Exclude tests which fail with JaCoCo -->
<exclude>**/Database1_9_7UpgradeTest.java</exclude>
<exclude>**/OrderTest.java</exclude>
<exclude>**/TestOrderTest.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
<properties>
<sonar.host.url>https://ci.openmrs.org/sonar</sonar.host.url>
<sonar.exclusions>src/main/java/org/openmrs/arden/**/*</sonar.exclusions>
<sonar.issuesReport.html.enable>true</sonar.issuesReport.html.enable>
<sonar.analysis.mode>incremental</sonar.analysis.mode>
</properties>
</profile>
</profiles>

<reporting>
Expand Down Expand Up @@ -1016,10 +1039,5 @@
<springVersion>3.2.7.RELEASE</springVersion>
<hibernateVersion>3.6.5.Final</hibernateVersion>
<customArgLineForTesting />

<sonar.host.url>https://ci.openmrs.org/sonar</sonar.host.url>
<sonar.exclusions>src/main/java/org/openmrs/arden/**/*</sonar.exclusions>
<sonar.issuesReport.html.enable>true</sonar.issuesReport.html.enable>
<sonar.analysis.mode>incremental</sonar.analysis.mode>
</properties>
</project>

0 comments on commit cb8b3b2

Please sign in to comment.