You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by vl...@apache.org on 2020/03/23 12:45:54 UTC

[jmeter] branch master updated: Do not include runGui coverage to the default coverage report

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

vladimirsitnikov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git


The following commit(s) were added to refs/heads/master by this push:
     new c2feeab  Do not include runGui coverage to the default coverage report
c2feeab is described below

commit c2feeabc83caaabfeea532a809756fe626828d29
Author: Vladimir Sitnikov <si...@gmail.com>
AuthorDate: Mon Mar 23 15:45:06 2020 +0300

    Do not include runGui coverage to the default coverage report
    
    runGui never terminates on its own, so CI servers should not launch it.
---
 build.gradle.kts | 1 +
 1 file changed, 1 insertion(+)

diff --git a/build.gradle.kts b/build.gradle.kts
index 121173b..4f0c605 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -386,6 +386,7 @@ allprojects {
 
         val testTasks = tasks.withType<Test>()
         val javaExecTasks = tasks.withType<JavaExec>()
+            .matching { it.name != "runGui" }
         // This configuration must be postponed since JacocoTaskExtension might be added inside
         // configure block of a task (== before this code is run). See :src:dist-check:createBatchTask
         afterEvaluate {