2

Cucumber JVM / Cucumber JUnit は真の無視をサポートしていますか? タグでフィルタリングするのではなく、仕様をマークすることで(最初の行として一時をスローするように手順を変更する必要なく)"~@ignore"実際の無視は、xmlレポートでスキップされたと報告されるため、 TeamCity のビルドの概要/ステータスなどの CI サーバー。@ignorePendingException

@RunWith(Cucumber.class)
@CucumberOptions(tags = {"~@ignore"})
public class FooIT {
}

フェイルセーフ-summary.xml

<failsafe-summary result="254" timeout="false">
  <completed>0</completed>
  <errors>0</errors>
  <failures>0</failures>
  <skipped>0</skipped>
  <failureMessage/>
</failsafe-summary>

TEST-com.foo.FooIT.xml

<testsuite name="com.foo.FooIT" time="0" tests="0" errors="0" skipped="0" failures="0">
4

0 に答える 0