如何在'test'之前运行“package”

时间:2012-05-02 11:19:21

标签: scala sbt

我有一个scala编译器项目。一些测试用例依赖于生成的jar文件。 因此,我总是在运行“测试”任务之前手动运行“包”任务。

如何添加将执行“测试”工作但将取决于“包”的SBT任务?

1 个答案:

答案 0 :(得分:7)

sbt 0.12:

将以下内容添加到项目设置中:

(test in Test) <<= (test in Test) dependsOn (Keys.`package` in Compile)

这会更改项目的测试任务。但您也可以定义自己的任务:

val myTestTask = TaskKey[Unit]("my-test-task", "runs package and then test")

然后将其添加到您的项目设置中:

myTestTask <<= (test in Test) dependsOn (Keys.`package` in Compile)

sbt 0.13:

将以下内容添加到项目设置中:

(test in Test) := {
  (Keys.`package` in Compile).value
  (test in Test).value
}

这会更改项目的测试任务。但您也可以定义自己的任务:

val myTestTask = taskKey[Unit]("runs package and then test")

然后将其添加到您的项目设置中:

myTestTask := {
  (Keys.`package` in Compile).value
  (test in Test).value
}