We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1c3d291 + afc1e04 commit 3524e27Copy full SHA for 3524e27
build.sbt
@@ -960,7 +960,7 @@ lazy val sbtTest = project.in(file("test") / "sbt-test")
960
sbtTestDirectory := baseDirectory.value,
961
962
scriptedBatchExecution := true, // set to `false` to execute each test in a separate sbt instance
963
- scriptedParallelInstances := 2, // default is 1
+ scriptedParallelInstances := (if (insideCI.value) 1 else 2), // default is 1; races cause spurious failures
964
965
// hide sbt output of scripted tests
966
scriptedBufferLog := true,
0 commit comments