Add the tag "integration-test" to the it configuration in BSP.

This commit is contained in:
Samuel CLARENC 2021-06-17 09:00:15 +02:00
parent eec3c32cc8
commit e6c2ce084a
1 changed files with 1 additions and 0 deletions

View File

@ -18,6 +18,7 @@ object BuildTargetTag {
def fromConfig(config: String): Vector[String] = config match { def fromConfig(config: String): Vector[String] = config match {
case "test" => Vector(test) case "test" => Vector(test)
case "it" => Vector(integrationTest)
case "compile" => Vector(library) case "compile" => Vector(library)
case _ => Vector.empty case _ => Vector.empty
} }