使用 SBT 有选择地在损坏的项目中运行测试
继 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个家伙应该能做到这一点:
它做与
testOnly
相同的事情 - 将任务创建转发给名为testQuickMethod
的帮助程序。唯一的区别在于它在第二个参数列表中提供的函数 - 它使用测试选项o
使用testTask
方法创建一个Task
,但末尾不附加dependsOn
。将
dependsOn
附加到testTask
可用于为此任务创建一些依赖项。This guy should do the trick:
It does the same thing that
testOnly
does - forwards the task creation to a helper calledtestQuickMethod
. The only difference is in the function it gives it in the 2nd parameter list - it uses test optionso
to create aTask
using thetestTask
method, but without appending thedependsOn
at the end.Appending
dependsOn
totestTask
could be used to create some dependencies for this task.