Skip to content

Commit

Permalink
fixed the sbt.TrapExitSecurityException bug
Browse files Browse the repository at this point in the history
  • Loading branch information
AngeloFilaseta committed Aug 6, 2021
1 parent 4a97648 commit 2d876e1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ lazy val root = (project in file("."))
libraryDependencies += scalaTest % Test
)

// System.exit calls are trapped to prevent the JVM from terminating.
// This is useful for executing user code that may call System.exit.
trapExit := false

// Tests Configurations
val numberOfTestProcessors = java.lang.Runtime.getRuntime.availableProcessors + 1
// Run tests in parallel
Expand Down

0 comments on commit 2d876e1

Please sign in to comment.