使用 SBT 有选择地在损坏的项目中运行测试

发布于 2024-10-28 01:32:19 字数 430 浏览 3 评论 0原文

this 关于在损坏的版本中运行 sbt 测试的问题之后,如何增强下面的 just-test 操作,使其具有与仅测试类似的功能。即仅测试*SomeTest

import sbt._

class Project(info: ProjectInfo) extends DefaultProject(info) {
  lazy val justTest = testTask(testFrameworks, testClasspath, testCompileConditional.analysis, testOptions)
}

Following on from this question on running sbt tests in a broken build, how can I enhance the just-test action below so that it has similar functionality to test-only. I.e. just-test-only *SomeTest

import sbt._

class Project(info: ProjectInfo) extends DefaultProject(info) {
  lazy val justTest = testTask(testFrameworks, testClasspath, testCompileConditional.analysis, testOptions)
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只怪假的太真实 2024-11-04 01:32:19

这个家伙应该能做到这一点:

lazy val justTestOnly = testQuickMethod(testCompileConditional.analysis, testOptions)(
  o => testTask(testFrameworks, testClasspath, testCompileConditional.analysis, o)
)

它做与 testOnly 相同的事情 - 将任务创建转发给名为 testQuickMethod 的帮助程序。唯一的区别在于它在第二个参数列表中提供的函数 - 它使用测试选项 o 使用 testTask 方法创建一个 Task ,但末尾不附加 dependsOn

dependsOn 附加到 testTask 可用于为此任务创建一些依赖项。

This guy should do the trick:

lazy val justTestOnly = testQuickMethod(testCompileConditional.analysis, testOptions)(
  o => testTask(testFrameworks, testClasspath, testCompileConditional.analysis, o)
)

It does the same thing that testOnly does - forwards the task creation to a helper called testQuickMethod. The only difference is in the function it gives it in the 2nd parameter list - it uses test options o to create a Task using the testTask method, but without appending the dependsOn at the end.

Appending dependsOn to testTask could be used to create some dependencies for this task.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文