gpt4 book ai didi

scala - 如何在 sbt 中命令执行测试?

转载 作者:行者123 更新时间:2023-12-02 05:18:39 25 4
gpt4 key购买 nike

请建议如何在 sbt 中控制测试/规范执行顺序的最佳方法?

有没有像runOrder in maven-sirefire-plugin这样的选项

最佳答案

当然,对于并行执行,它不能清楚地完成,但是对于顺序执行,它是可以解决的:

parallelExecution in test := false

testGrouping <<= definedTests in Test map { tests =>
tests.map { test =>
import Tests._
new Group(
name = test.name,
tests = Seq(test),
runPolicy = InProcess)
}.sortWith(_.name < _.name)
}

关于scala - 如何在 sbt 中命令执行测试?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14237420/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com