Tagged Questions

4
votes
2answers
750 views

Scala build tool and test framework that play nice together?

Here are my goals: 1. Run my tests in Eclipse and see the pretty green or red bar. 2. Run my tests on the command line with a build tool. I'm leaning towards specs and sbt, but I can't get them to ...
2
votes
1answer
134 views

In SBT, can I run only tests that match a regular expression?

In SBT 0.10.1, I frequently use test-only to narrow down the scope of my tests sbt> test-only com.example.MySpec However, I want to narrow down such that I only run tests whose name/description ...
1
vote
1answer
54 views

SBT Test-Dependencies in Multiprojects: Make the Test-Code Available to Dependent Projects

I've a SBT multi-project where some projects have dependencies to each other. Like this: lazy val coreProject: Project = Project( id = "core-project", base = file("./core-project"), // ...