Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何排除使用 scoverage for play scala 框架自动生成的路由和 ReverseRoutes 文件?我的项目结构如下。
我尝试在 root build.sbt 中使用以下行,但它不起作用。ScoverageKeys.coverageExcludedPackages := ";controllers\.. Reverse. ;. Routes "
您可以使用以下命令排除使用 scoverage for play scala 自动生成的路由和 ReverseRoutes 文件
coverageExcludedPackages := “com.bar.ActorSystem*;com.foo.Boot*”
其中 com.bar 和 com.foo 只不过是包路径。