我已经编写了一个我想在执行测试之前运行的新任务。有两个任务可用于运行测试test
和testOnly
,所以我已经使这两个任务依赖于我的新任务,如此,
(testOnly in Test) <<= (testOnly in Test) dependsOn startIntegrationTestServerIfNotAlreadyRunning
(test in Test) <<= (test in Test) dependsOn startIntegrationTestServerIfNotAlreadyRunning
它有效,但感觉有点冗长。是否有一项任务可以依赖于我的任务来达到同样的目的?