From b4aa5c7f6db7773a46c9f642c161a151c1cb065d Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Mon, 22 Oct 2012 14:39:16 -0400 Subject: [PATCH] Revert "add alternative way to filter tests. It may be useful for 3rd party plugins" This reverts commit 1658d79ba284069b039d391c53eb1ce626b8a9fd. The wiki has been replaced by scala-sbt.org as described at the top of the page. Please make changes to src/sphinx/ in the sbt project. --- Detailed-Topics/Testing.md | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/Detailed-Topics/Testing.md b/Detailed-Topics/Testing.md index 4741e82..b361b06 100644 --- a/Detailed-Topics/Testing.md +++ b/Detailed-Topics/Testing.md @@ -141,18 +141,10 @@ parallelExecution in Test := false If you want to only run test classes whose name ends with "Test", use `Tests.Filter`: -```scala +``` testOptions in Test := Seq(Tests.Filter(s => s.endsWith("Test"))) ``` -or if you want remove other tests from `detected-tests` for some reason: -```scala -definedTests in Test <<= (definedTests in Test) { - (tests) => - def filter(tests: Seq[TestDefinition]) = tests.filter(t => t.name.endsWith("Test")) - tests map filter -} -``` ## Forking tests In version 0.12 the facility to run tests in a separate JVM has been added. The setting