In relation to a previous question, I'd like to have multiple test folders for different types of test and be able to execute the tests contained in each folder with a separate SBT action.

For example, an action 'test-unit' would run only the tests contained under the folder src/test/scala/unit, and a 'test-functional' action would run only the tests under src/test/scala/functional. How would we write actions to do this?

link|improve this question

71% accept rate
feedback

1 Answer

If you are using xsbt 0.10.0, you can easily create additional test configurations by defining the a full build configuration in a Scala file located in your project folder. Below is the wiki example for integration tests. The default directory layout is a bit different from yours, unit tests go in src/test/scala and integration tests in src/it/scala. From the console, you can then run test to execute unit tests or it:test for integration tests.

import sbt._
import Keys._

object B extends Build
{
  lazy val root =
    Project("root", file("."))
      .configs( IntegrationTest )
      .settings( Defaults.itSettings : _*)
      .settings( libraryDependencies += specs )

  lazy val specs = "org.scala-tools.testing" %% "specs" % "1.6.8" % "it"
}
link|improve this answer
Any idea how to do this in 0.7.7? – Raymond Barlow Jul 5 '11 at 23:49
What scala file is this supposed to go in? It doesn't say. – Will Sargent Oct 17 '11 at 22:30
File name does not matter as long as it is a .scala file located in the project directory. Have a look at Scalaz build file for a more detailed example github.com/scalaz/scalaz/blob/master/project/ScalazBuild.scala – Mark Jayxcela Oct 18 '11 at 19:47
feedback

Your Answer

 
or
required, but never shown

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