Skip to content

Commit

Permalink
Merge branch 'develop' into aen_fix_contract_tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aednichols authored Dec 12, 2023
2 parents 1540216 + 4943896 commit 3bcd619
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions project/Settings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,13 @@ object Settings {
organization := "org.broadinstitute",
scalaVersion := ScalaVersion,
resolvers ++= additionalResolvers,
// Don't run tasks in parallel, especially helps in low CPU environments like Travis
Global / parallelExecution := false,
Global / parallelExecution := true,
// Seems to cause race conditions in tests, that are not pertinent to what's being tested
Test / parallelExecution := false,
Global / concurrentRestrictions ++= List(
// Don't run any other tasks while running tests, especially helps in low CPU environments like Travis
// Don't run any other tasks while running tests
Tags.exclusive(Tags.Test),
// Only run tests on one sub-project at a time, especially helps in low CPU environments like Travis
// Only run tests on one sub-project at a time
Tags.limit(Tags.Test, 1)
),
dependencyOverrides ++= cromwellDependencyOverrides,
Expand Down

0 comments on commit 3bcd619

Please sign in to comment.