如何在Jenkins中添加构建后操作以使用sbt 0.13启动单元和集成测试? JUnit是我正在使用的测试套件,似乎没有办法让测试结果在junitxml输出中。
答案 0 :(得分:2)
使用build.sbt中的maven surefire plugin生成xml报告。
libraryDependencies += "org.apache.maven.plugins" %% "maven-surefire-report-plugin" % "2.17"
然后,您的构建后操作将发送到Publish JUnit test result report
,它位于此处:
target/surefire-reports/TEST-*.xml