Skip to content

Commit

Permalink
incorporate @harrah suggestion about configuring test frameworks
Browse files Browse the repository at this point in the history
  • Loading branch information
ph2734 committed May 1, 2012
1 parent b18e925 commit a69d41b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions framework/src/sbt-plugin/src/main/scala/PlaySettings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,11 @@ trait PlaySettings {
loader.loadClass("play.api.Logger").getMethod("shutdown").invoke(null)
},

testOptions in Test += Tests.Argument("sequential", "true"),
testOptions in Test += Tests.Argument(TestFrameworks.Specs, "sequential", "true"),

testOptions in Test += Tests.Argument("junitxml", "console"),
testOptions in Test += Tests.Argument(TestFrameworks.ScalaTest, "-oD"),

testOptions in Test += Tests.Argument(TestFrameworks.JUnit,"junitxml", "console"),

testListeners <<= (target, streams).map((t, s) => Seq(new eu.henkelmann.sbt.JUnitXmlTestsListener(t.getAbsolutePath, s.log))),

Expand Down

0 comments on commit a69d41b

Please sign in to comment.