Remove the JUnit test runner (#23784)

This commit is contained in:
Johan Andrén 2017-10-15 18:01:54 +02:00 committed by GitHub
parent cd8ec9f981
commit 3ad2db52c4
3 changed files with 6 additions and 21 deletions

View file

@ -8,13 +8,6 @@ import sbt._
object TestExtras {
object JUnitFileReporting {
val settings = Seq(
// we can enable junit-style reports everywhere with this
testOptions += Tests.Argument(TestFrameworks.JUnit, "-v", "-a", "-u", (target.value / "test-reports").getAbsolutePath),
testOptions += Tests.Argument(TestFrameworks.ScalaTest, "-u", (target.value / "test-reports").getAbsolutePath))
}
object Filter {
object Keys {
val excludeTestNames = settingKey[Set[String]]("Names of tests to be excluded. Not supported by MultiJVM tests. Example usage: -Dakka.test.names.exclude=TimingSpec")