From 030469c820fc9b511ec01423666b15334f34417c Mon Sep 17 00:00:00 2001 From: LQ63 Date: Wed, 22 Apr 2026 09:07:53 +0200 Subject: [PATCH] test(core): core dependecy to rules Added Quarkus file into ignore list --- build.gradle.kts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index 39ce424..5127534 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -41,6 +41,8 @@ val coverageExclusions = listOf( "**/io/src/main/scala/de/nowchess/io/service/resource/IoResource.scala", // JacksonConfig — Quarkus lifecycle hook, no testable logic beyond ObjectMapper registration "**/io/src/main/scala/de/nowchess/io/service/config/JacksonConfig.scala", + //RuleSetRestAdapter - Quarkus integration of rule into core, only testable with Quarkus tests + "**/core/src/main/de/nowchess/chess/adapter/RuleSetRestAdapter.scala" ) // Converts a Sonar-style glob to a scoverage regex (matched against full source path).