如何使test和testOnly任务都依赖于新任务?

时间:2015-10-02 12:05:43

标签: sbt

我已经编写了一个我想在执行测试之前运行的新任务。有两个任务可用于运行测试testtestOnly,所以我已经使这两个任务依赖于我的新任务,如此,

(testOnly in Test) <<= (testOnly in Test) dependsOn startIntegrationTestServerIfNotAlreadyRunning
(test in Test) <<= (test in Test) dependsOn startIntegrationTestServerIfNotAlreadyRunning

它有效,但感觉有点冗长。是否有一项任务可以依赖于我的任务来达到同样的目的?

0 个答案:

没有答案