我知道您可以在build.gradle
文件中包含以下代码段,以便在从命令行运行gradle test
时从测试中输出日志。
test {
testLogging {
showStandardStreams true
}
}
我不想在我的build.gradle
文件中包含该代码段,因为它被多个测试套件所使用,其中一些测试套件不喜欢额外的日志记录。我的问题是:可以使用某种gradle标志/选项进行设置吗?例如:
gradle test --testLogging.showStandardStreams=true
注意事项:我也知道我可以使用gradle test -i
,但我不会走这条路线,因为它太吵了