Skip to content

Commit

Permalink
Scoverage inner module defaults to skipIdea = true (#2989)
Browse files Browse the repository at this point in the history
Pull request: #2989
  • Loading branch information
lefou authored Jan 24, 2024
1 parent 3169663 commit 4b63b1b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ trait ScoverageModule extends ScalaModule { outer: ScalaModule =>
def xmlReport(): Command[Unit] = T.command { doReport(ReportType.Xml) }
def consoleReport(): Command[Unit] = T.command { doReport(ReportType.Console) }

override def skipIdea = outer.skipIdea
override def skipIdea: Boolean = true // being a synthetic module, no need to appear in the IDE
}

trait ScoverageTests extends ScalaTests {
Expand Down

0 comments on commit 4b63b1b

Please sign in to comment.