We'd like to set up our SBT project so that we have multiple test folders as opposed to one. So we'd like to see:

  • root
    • src
      • test
        • scala
          • unit
          • functional

How would we configure our SBT project file paths to do this?

link|improve this question

71% accept rate
feedback

1 Answer

up vote 1 down vote accepted

SBT 0.9.x:

(sourceDirectories in Test) := Seq(new File("src/test/scala/unit"), 
                                   new File("src/test/scala/functional"))

SBT 0.7.x:

override def testSourceRoots = ("src" / "test") +++ 
       "scala" +++ ("unit" / "functional")
link|improve this answer
Why are you overriding on 0.7.x but just assigning in 0.9.x? – Daniel C. Sobral Jun 2 '11 at 13:13
Is there any way not to override in 0.7.x? I thought, assignment is possible only in 0.9.x via an introduced concept of project settings. – Vasil Remeniuk Jun 2 '11 at 13:22
Oh, with this edit it makes more sense. You were using super before, so I assumed it was intentional. – Daniel C. Sobral Jun 2 '11 at 14:07
I've made it accidentally :-), trying to preserve Java test paths (which is not actually needed here). – Vasil Remeniuk Jun 2 '11 at 14:13
@Daniel ,but I'm still overriding for 0.7.*, and the question remains open :) – Vasil Remeniuk Jun 2 '11 at 14:16
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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