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

Restore default value for parallelExecution in Test setting (close #108) #110

Merged
merged 1 commit into from
May 20, 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
10 changes: 0 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,16 +94,6 @@ If you are running into a scenario where your tests normally pass, but fail when
then the most common culprit is timing issues on futures and other async operations. Scoverage does a lot of file
writing behind the scenes in order to track which statements have been executed, and this slows down tests slighly, so try upping the timeouts by an order of magnitude.

## Parallel test execution

Due to a bug in SBT, parallel text execution is disabled. You can enable it again by

```scala
parallelExecution in Test := true,
```

But if you run into an error like "cannot create classes.bak" note this is not an scoverage bug, but an SBT bug.

## Coveralls

If you have an open source project then you can add code coverage metrics with the excellent website http://coveralls.io. Scoverage will integrate with coveralls using the [sbt-coveralls](https://github.com/scoverage/sbt-coveralls) plugin.
Expand Down
9 changes: 2 additions & 7 deletions src/main/scala/scoverage/ScoverageSbtPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -117,12 +117,7 @@ class ScoverageSbtPlugin extends sbt.AutoPlugin {
coverageOutputHTML := true,
coverageOutputCobertua := true,
coverageOutputDebug := false,
coverageCleanSubprojectFiles := true,

// disable parallel execution to work around "classes.bak" bug in SBT
parallelExecution in Test := false,

parallelExecution in IntegrationTest := false
coverageCleanSubprojectFiles := true
)

private def postTestReport = {
Expand Down Expand Up @@ -250,4 +245,4 @@ class ScoverageSbtPlugin extends sbt.AutoPlugin {

s.log.info(s"All done. Coverage was [$cfmt%]")
}
}
}