Skip to content

Commit

Permalink
Scoverage inner module defaults to skipIdea = outer.skipIdea (#3098)
Browse files Browse the repository at this point in the history
This reverts PR #2989

Fix #3097

Pull request: #3098
  • Loading branch information
lefou authored Mar 21, 2024
1 parent 7f20899 commit 9a734ab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ trait ScoverageModule extends ScalaModule { outer: ScalaModule =>
def xmlCoberturaReport(): Command[Unit] = T.command { doReport(ReportType.XmlCobertura) }
def consoleReport(): Command[Unit] = T.command { doReport(ReportType.Console) }

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

trait ScoverageTests extends ScalaTests {
Expand Down

0 comments on commit 9a734ab

Please sign in to comment.