specs2:标签规范/单个测试,并使用sbt将其排除在运行之外

时间:2015-05-27 06:26:51

标签: sbt specs2

我需要在运行测试套件时跳过规范和单个测试。 以下是此类测试的一个示例:

package models

import org.specs2.mutable._
import org.specs2.runner._

class SlowTaggedSpecification extends Specification{
  "SLOW_SPEC" should {
    "BAD!! Not Skipped" in {
      "axbcd" must find( "bc".r )
    }
  } section( "SLOW_SPEC" )
}

class SlowFastTaggedSpecification extends Specification{
  "SLOW_FAST_SPEC" should {
    "run fast test" in {
      "axbcd" must find( "bc".r )
    } section( "FAST_TEST" )

    "SLOW_TEST should be skipped (BAD!! NOT Skipped)" in {
      "axbcd" must find( "bc".r )
    } section( "SLOW_TEST" )
  } section( "SLOW_FAST_SPEC" )
}

我需要跳过SLOW_SPEC(整个规范)和SLOW_TEST(仅限个人测试)。 我的build.sbt是:

scalaVersion := "2.11.1"

libraryDependencies += "org.specs2" %% "specs2" % "2.3.12" % "test"

当我运行以下命令行时:

sbt '~testOnly models.* -- -l SLOW_SPEC'
sbt '~testOnly models.* -- -l SLOW_TEST'

没有任何测试被跳过。我可以知道如何使用标签排除规范和单个测试吗?另外,如果我没有使用testOnly,而是使用test,那么sbt语法会是什么?

sbt '~test -- -l SLOW_SPEC'

导致sbt抱怨。我的sbt版本是0.13.5

任何指针都会受到赞赏。

1 个答案:

答案 0 :(得分:4)

排除标记的命令行参数是

sbt> ~testOnly models.* -- exclude SLOW_SPEC

如果您想在使用test命令时排除代码,则需要在Test.Arguments文件中使用build.sbt

testOptions in Test += Tests.Argument(TestFrameworks.Specs2, "exclude", "SLOW_SPEC")

如果要专门运行SLOW_SPEC测试,请使用以下命令:

sbt 'set testOptions in Test := Seq()' '~testOnly models.SlowTaggedSpecification'