From 1efbedcf8e7134c7270f49a0159118bb9b01bf1f Mon Sep 17 00:00:00 2001 From: Jakob Gillich Date: Thu, 23 Jul 2020 16:31:53 +0200 Subject: [PATCH] Fix coverage exclusions --- build.sbt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index 8eec30999..401dd4548 100644 --- a/build.sbt +++ b/build.sbt @@ -77,7 +77,9 @@ lazy val commonSettings = Seq( "commons-io" % "commons-io" % "2.6", "com.github.scopt" %% "scopt" % "4.0.0-RC2", "io.sentry" % "sentry-logback" % "1.7.30" - ) + ), + // TODO(chord): remove exclusion when SessionActor is refactored: https://github.com/psforever/PSF-LoginServer/issues/279 + coverageExcludedPackages := "net\\.psforever\\.actors\\.session\\.SessionActor.*;net\\.psforever\\.zones\\.zonemaps.*" ) lazy val pscryptoSettings = Seq( @@ -111,8 +113,6 @@ lazy val pslogin = (project in file("pslogin")) name := "pslogin", // ActorTests have specific timing requirements and will be flaky if run in parallel parallelExecution in Test := false, - // TODO(chord): remove exclusion when WorldSessionActor is refactored: https://github.com/psforever/PSF-LoginServer/issues/279 - coverageExcludedPackages := "net.psforever.actors.session.SessionActor.*;net.psforever.zones.zonemaps.*", // Copy all tests from Test -> QuietTest (we're only changing the run options) inConfig(QuietTest)(Defaults.testTasks) )