Logs from one Test class are displayed in other class's Standard output section in Gradle Test reports
问题 I am using TestNG (with gradle) for parallel test execution. Gradle Task for executing my tests :- task executeTests(type: Test) { useTestNG{ options -> options.parallel = 'classes' options.threadCount = 2 } } I have some logging in tests. In Gradle reports logs of one test class are being printed in standard output section of some other test class when we execute tests in parallel. To debug, I created 3 classes with one test each and printed Thread.currentThread().getId() with logs. In