Reputation: 26740
I'm migrating a mixed Java/Scala project from Maven to SBT. When I run "test" I get lots of errors on classes that are abstract classes with JUnit test methods in them. They all have a name of the form Abstract*TestCase. Maven safely ignored these classes since their names don't start or end with the word Test and correctly executed their subclasses. How can I get SBT to behave the same way?
Upvotes: 1
Views: 216