Merge pull request #6551 from samuelClarencTeads/bspIntegrationTestTag

Add the tag "integration-test" to the it configuration in BSP.
This commit is contained in:
eugene yokota 2021-06-17 17:30:06 -04:00 committed by GitHub
commit 4926cb4c2b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 {
case "test" => Vector(test)
case "it" => Vector(integrationTest)
case "compile" => Vector(library)
case _ => Vector.empty
}