rabejens
rabejens

Reputation: 8162

Is it possible to do "incremental testing" with sbt and Jenkins?

I migrated a large Maven project with submodules to sbt and got it to build correctly with Jenkins and its sbt plugin. I run sbt compile test. As I understand, sbt compiles incrementally by default. Is it also possible to have it run only tests affected by the changed classes?

Upvotes: 1

Views: 411

Answers (1)

Dale Wijnand
Dale Wijnand

Reputation: 6102

Yes, using testQuick, see the docs for more information.

Upvotes: 2

Related Questions