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

Coverage off #113

Merged
merged 9 commits into from
Jun 7, 2015
Merged
Show file tree
Hide file tree
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
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
language: scala

script: sbt ++$TRAVIS_SCALA_VERSION test scripted

after_script:
- if [[ $TRAVIS_TEST_RESULT == 0 && "$TRAVIS_BRANCH" == "master" ]]; then sbt "^publish"; fi
- if [[ $TRAVIS_TEST_RESULT == 0 &&
"$TRAVIS_REPO_SLUG" == "scoverage/sbt-scoverage" &&
"$TRAVIS_BRANCH" == "master" ]]; then sbt "^publish"; fi

scala:
- "2.10.4"
- "2.10.4"
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ $ sbt coverageReport

to generate the reports. You will find the coverage reports inside `target/scoverage-report`. There are HTML and XML reports. The XML is useful if you need to programatically use the results, or if you're writing a tool.

If you're running the coverage reports from within an sbt console session (as
opposed to one command per sbt launch), then the `coverage` task is sticky. To
turn it back off when you're done running reports, use the `coverageOff` task.

If you want to see a project that is already setup to use scoverage in both sbt and maven, then clone [the scoverage samples project](https://github.com/scoverage/scoverage-samples).

## Notes on upgrading to version 1.0.0
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name := "sbt-scoverage"

organization := "org.scoverage"

scalaVersion := "2.10.4"
scalaVersion := "2.10.5"

scalacOptions := Seq("-unchecked", "-deprecation", "-feature", "-encoding", "utf8")

Expand All @@ -16,7 +16,7 @@ resolvers <++= isSnapshot(
)

libraryDependencies ++= Seq(
"org.scoverage" %% "scalac-scoverage-plugin" % "1.0.5-SNAPSHOT"
"org.scoverage" %% "scalac-scoverage-plugin" % "1.1.0"
)

publishTo := {
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=0.13.5
sbt.version=0.13.7
7 changes: 6 additions & 1 deletion src/main/scala/scoverage/ScoverageSbtPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@ class ScoverageSbtPlugin extends sbt.AutoPlugin {
val OrgScoverage = "org.scoverage"
val ScalacRuntimeArtifact = "scalac-scoverage-runtime"
val ScalacPluginArtifact = "scalac-scoverage-plugin"
val ScoverageVersion = "1.0.5-SNAPSHOT"
val ScoverageVersion = "1.1.0"

object ScoverageKeys {
lazy val coverage = taskKey[Unit]("enable compiled code with instrumentation")
lazy val coverageOff = taskKey[Unit]("disable compiled code with instrumentation")
lazy val coverageReport = taskKey[Unit]("run report generation")
lazy val coverageAggregate = taskKey[Unit]("aggregate reports from subprojects")
val coverageExcludedPackages = settingKey[String]("regex for excluded packages")
Expand Down Expand Up @@ -42,6 +43,10 @@ class ScoverageSbtPlugin extends sbt.AutoPlugin {
enabled = true
},

coverageOff := {
enabled = false
},

coverageReport := {
val target = crossTarget.value
val s = (streams in Global).value
Expand Down
6 changes: 2 additions & 4 deletions src/sbt-test/scoverage/bad-coverage/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ scalaVersion := "2.10.4"

libraryDependencies += "org.specs2" %% "specs2" % "2.3.13" % "test"

instrumentSettings
ScoverageSbtPlugin.ScoverageKeys.coverageMinimum := 80

ScoverageKeys.minimumCoverage := 80

ScoverageKeys.failOnMinimumCoverage := true
ScoverageSbtPlugin.ScoverageKeys.coverageFailOnMinimum := true
3 changes: 2 additions & 1 deletion src/sbt-test/scoverage/bad-coverage/test
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# run scoverage
> clean
-> scoverage:test
> coverage
-> test
9 changes: 9 additions & 0 deletions src/sbt-test/scoverage/coverage-off/build.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
version := "0.1"

scalaVersion := "2.10.4"

libraryDependencies += "org.specs2" %% "specs2" % "2.3.13" % "test"

ScoverageSbtPlugin.ScoverageKeys.coverageMinimum := 80

ScoverageSbtPlugin.ScoverageKeys.coverageFailOnMinimum := true
15 changes: 15 additions & 0 deletions src/sbt-test/scoverage/coverage-off/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// The Typesafe repository
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/"

//scoverage needs this
resolvers += Classpaths.sbtPluginReleases

{
val pluginVersion = System.getProperty("plugin.version")
if(pluginVersion == null)
throw new RuntimeException("""|The system property 'plugin.version' is not defined.
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin)
else addSbtPlugin("org.scoverage" %% "sbt-scoverage" % pluginVersion)
}


Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
object GoodCoverage {

def sum(num1: Int, num2: Int) = {
num1 + num2
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import org.specs2.mutable._

/**
* Created by tbarke001c on 7/8/14.
*/
class GoodCoverageSpec extends Specification {

"GoodCoverage" should {
"sum two numbers" in {
GoodCoverage.sum(1, 2) mustEqual 3
}
}
}
10 changes: 10 additions & 0 deletions src/sbt-test/scoverage/coverage-off/test
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# run scoverage using the coverage task
> clean
> coverage
> test
# turn off coverage using the coverage-off task and recompile
> clean
> coverageOff
> test
# There should be no scoverage-data directory
-$ exists target/scala-2.10/scoverage-data
6 changes: 2 additions & 4 deletions src/sbt-test/scoverage/good-coverage/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ scalaVersion := "2.10.4"

libraryDependencies += "org.specs2" %% "specs2" % "2.3.13" % "test"

instrumentSettings
ScoverageSbtPlugin.ScoverageKeys.coverageMinimum := 80

ScoverageKeys.minimumCoverage := 80

ScoverageKeys.failOnMinimumCoverage := true
ScoverageSbtPlugin.ScoverageKeys.coverageFailOnMinimum := true
3 changes: 2 additions & 1 deletion src/sbt-test/scoverage/good-coverage/test
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# run scoverage
> clean
> scoverage:test
> coverage
> test
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "1.0.5-SNAPSHOT"
version in ThisBuild := "1.2.0-SNAPSHOT"