我无法使用Python编写的测试来测量我的scala应用程序的代码覆盖率。生成报告的步骤
编译应用程序 activator -Dsbt.override.build.repos = true -Dsbt.repository.config =。/ repositories -Dsbt.log.noformat = true clean coverage dist
在端口9002上运行应用程序 cd target / universal 解压缩sample-app-1.0.zip cd sample-app-1.0 bin / sample-app -Dhttp.port = 9002
针对此应用程序运行python测试 cd / home / python-tests python ./tests/sample_tests/pkg1 /
lsof -t -i:9002(杀死申请表)
activator -Dsbt.override.build.repos = true - Dsbt.repository.config =。/ repositories -Dsbt.log.noformat = true coverageReport
有人可以帮我理解设置是否正确?