using scct in my project there are some files I would like to be excluded
my build file :
object myBuild extends Build {
lazy val americanNinja1 = Project(id = "American-Ninja", base = file("americanNinja")).settings(ScctPlugin.instrumentSettings: _*)
//more code .....
}
how can i add setting to the scct to exclude all .html files (for example)
looking at the github project of scct i see that there is a filter option
https://github.com/sqality/scct/blob/master/src/main/scala/com/sqality/scct/CoverageFilter.scala
and there was an issue that was solved for this matter :
https://github.com/mtkopone/scct/issues/60
any idea how to do this ?
Thanks!
You could take a look at https://github.com/scoverage/sbt-scoverage which is a fork of SCCT and supports exclusions, but it does not support multi project builds at the moment.