Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generate the report only after the tests have run #36

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 30 additions & 8 deletions src/main/scala/scoverage/ScoverageSbtPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -158,17 +158,39 @@ class ScoverageSbtPlugin extends sbt.Plugin {
scoverageDeps ++ testDeps.filter(_.data != oldClassDir)
},

test in ScoverageTest := {
(test in Test).value
scoverageReport.value
},
test in ScoverageITest := {
(test in IntegrationTest).value
scoverageReport.value
},
// After running the tests, create the coverage report:
test in ScoverageTest := sequence(List(
test in ScoverageTest,
scoverageReport in ScoverageTest))
.value,

// After running the tests, create the coverage report (ITest mode).
// NOTE: this will overwrite the previous report if both targets are chosen in the same run.
// The coverage report will be additive in that case.
//
// TODO: this feature needs some thought to be more useful.
// The following use cases are not currently supported:
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(I suppose this isn't quite correct -- it will more or less work, but you'll generate the report twice and throw away one, which seems wasteful)

// - run test + itest, get a single report
// - run test + itest, get two separate reports
// Only this use case is supported:
// - run test OR itest, get a single report
test in ScoverageITest := sequence(List(
test in ScoverageITest,
scoverageReport in ScoverageITest))
.value,

// copy the test task into compile so we can do scoverage:test instead of scoverage-test:test etc
test in ScoverageCompile <<= (test in ScoverageTest)
)
}

/**
* Runs the given tasks sequentially.
* See http://eed3si9n.com/sequencing-tasks-with-sbt-sequential
*/
private def sequence(tasks: List[Def.Initialize[Task[Unit]]]): Def.Initialize[Task[Unit]] =
tasks match {
case Nil => Def.task{ () }
case x :: xs => Def.taskDyn { val _ = x.value; sequence(xs) }
}
}