How do I configure sbt 0.10 to use the junitxml option with specs2?

The specs2 documentation says this is the way to do it using sbt 0.7.x:

override def testOptions = super.testOptions ++ Seq(TestArgument("junitxml"))

How do I say the same thing in sbt 0.10?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

This is described here in the SBT documentation:

testOptions in Test += Tests.Argument("junitxml")

And if you want to specify this option specifically for specs2:

testOptions in Test += Tests.Argument(TestFrameworks.Specs2, "junitxml")
link|improve this answer
Great. Thanks, Eric! – Adam Pingel Aug 4 '11 at 4:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.