You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ti...@apache.org on 2020/06/17 20:48:22 UTC

[maven-surefire] 03/03: skip jacoco if skipped tests

This is an automated email from the ASF dual-hosted git repository.

tibordigana pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git

commit d3a41840d050b7403130234eda70908c6e743bda
Author: tibordigana <ti...@apache.org>
AuthorDate: Sat Jun 13 15:48:16 2020 +0200

    skip jacoco if skipped tests
---
 pom.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/pom.xml b/pom.xml
index 78efd27..b11f0fd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -561,6 +561,7 @@
           <artifactId>jacoco-maven-plugin</artifactId>
           <version>${jacocoVersion}</version>
           <configuration>
+            <skip>${skipTests}</skip>
             <!--<append>true</append>
             <inclNoLocationClasses>true</inclNoLocationClasses>
             <haltOnFailure>false</haltOnFailure>