You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jira@kafka.apache.org by GitBox <gi...@apache.org> on 2021/05/16 13:05:07 UTC

[GitHub] [kafka] ijuma commented on a change in pull request #10585: MINOR: cleanTest ought to remove output of unitTest task and integrat…

ijuma commented on a change in pull request #10585:
URL: https://github.com/apache/kafka/pull/10585#discussion_r633089109



##########
File path: build.gradle
##########
@@ -380,6 +380,15 @@ subprojects {
     }
   }
 
+  cleanTest {
+    subprojects.each {
+      delete "${it.buildDir}/test-results/unitTest"
+      delete "${it.buildDir}/reports/tests/unitTest"
+      delete "${it.buildDir}/test-results/integrationTest"
+      delete "${it.buildDir}/reports/tests/integrationTest"
+    }
+  }
+

Review comment:
       Is it useful for unit and integration test to use separate output dirs? Or should they all write to the same output dir as the tests command?




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org