Skip to content

Commit 80eabf1

Browse files
committed
Test
1 parent 06557b8 commit 80eabf1

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

project/Settings.scala

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ object Settings {
7777
organization := "org.broadinstitute",
7878
scalaVersion := ScalaVersion,
7979
resolvers ++= additionalResolvers,
80-
Global / parallelExecution := true,
81-
Test / parallelExecution := false,
80+
Compile / parallelExecution := true,
81+
Default / parallelExecution := false,
8282
Global / concurrentRestrictions ++= List(
8383
// Don't run any other tasks while running tests, especially helps in low CPU environments like Travis
8484
Tags.exclusive(Tags.Test),
@@ -95,7 +95,8 @@ object Settings {
9595
Compile / console / scalacOptions --= consoleHostileSettings,
9696
excludeDependencies ++= List(
9797
"org.typelevel" % "simulacrum-scalafix-annotations_2.13"
98-
)
98+
),
99+
// Global / lintUnusedKeysOnLoad := false
99100
)
100101

101102
val pact4sSettings = sharedSettings ++ List(

0 commit comments

Comments
 (0)