LoginSignup
0
0

More than 5 years have passed since last update.

sbt testで指定タグだけテストを除外して実施する

Last updated at Posted at 2017-03-21

specs2を使ってる

class HogeTest extends Specification {
  section("AAA")
  "ほげ" should {
  } 
  section("AAA")
}
sbt 'testOnly -- exclude AAA'

sbtのオプションをシングルコートで囲うのを忘れない

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0