mirror of
https://github.com/2revoemag/PSF-BotServer.git
synced 2026-01-19 18:14:44 +00:00
Fix flaky actor tests by de-parallelizing
This commit is contained in:
parent
3e40a2f319
commit
9836e48ac7
|
|
@ -61,7 +61,9 @@ lazy val root = (project in file(".")).
|
|||
lazy val pslogin = (project in file("pslogin")).
|
||||
settings(commonSettings: _*).
|
||||
settings(
|
||||
name := "pslogin"
|
||||
name := "pslogin",
|
||||
// ActorTests have specific timing requirements and will be flaky if run in parallel
|
||||
parallelExecution in Test := false
|
||||
).
|
||||
settings(pscryptoSettings: _*).
|
||||
dependsOn(common)
|
||||
|
|
|
|||
Loading…
Reference in a new issue