Run scoverage from intellij

Viewed 1567

I was wondering, is it possible to run scoverage from intellij (not from the terminal ) and even better, see scoverage reports like the native coverage from intellij?

Thanks

1 Answers

I've managed to collect coverage by adding scalac-scoverage-plugin as a test dependency:

libraryDependencies += "org.scoverage" %% "scalac-scoverage-plugin" % "1.4.0" % Test

coverage results

Related