我想运行一个ant目标,它将从localhost转储jacoco覆盖数据:6300(Jacoco设置为javaagent,带选项:output = tcpserver,address = *,port = 6300)。 ant目标是在运行测试以将覆盖数据转储到文件之后调用的客户端。我使用了以下内容:
test.finalizedBy(antjacocoReport)
antjacocoReport是执行正常的ant目标,但由于Gradle Test Executor在此任务之前退出,它正在显示
[ant:jacoco:dump] Connecting to localhost/127.0.0.1:6300
[ant:jacoco:dump] Connection refused: connect
和
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':antjacocoReport'.
> Unable to dump coverage data
任何人都知道如何在排空jacoco代理之前完成这项任务。 ?