Skip to content

Commit fd4ba2b

Browse files
committed
Disabled parallel execution in integration tests
1 parent d6275c6 commit fd4ba2b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/scala/scoverage/ScoverageSbtPlugin.scala

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,9 @@ class ScoverageSbtPlugin extends sbt.AutoPlugin {
120120
coverageCleanSubprojectFiles := true,
121121

122122
// disable parallel execution to work around "classes.bak" bug in SBT
123-
parallelExecution in Test := false
123+
parallelExecution in Test := false,
124+
125+
parallelExecution in IntegrationTest := false
124126
)
125127

126128
private def postTestReport = {

0 commit comments

Comments
 (0)