Maven-万无一失。如何调整报告的详细程度?
Maven-surefire. How to adjust the level of detail of the report?
我使用emailable-report.html文件将测试报告发送到邮箱。我不想要有关成功测试的详细信息(这是默认行为)。我可以以某种方式自定义它吗?
属性 surefire.testng.verbose 不要改变这个行为。
你不能,因为 EmailableReporter2
不允许配置。
但您可以修改它from the source并将其用作您自己的EmailableReporter
。
您只需在 pom.xml
中将其声明为侦听器:Using custom reporters with the maven surefire plugin
我使用emailable-report.html文件将测试报告发送到邮箱。我不想要有关成功测试的详细信息(这是默认行为)。我可以以某种方式自定义它吗?
属性 surefire.testng.verbose 不要改变这个行为。
你不能,因为 EmailableReporter2
不允许配置。
但您可以修改它from the source并将其用作您自己的EmailableReporter
。
您只需在 pom.xml
中将其声明为侦听器:Using custom reporters with the maven surefire plugin