feat: Add additional files to coverage exclusions and suppress warnings in ZobristHash and PolyglotBook
Build & Test (NowChessSystems) TeamCity build failed

This commit is contained in:
2026-04-17 22:30:59 +02:00
parent a9cafc35f8
commit c9daec475c
3 changed files with 8 additions and 1 deletions
+5 -1
View File
@@ -31,12 +31,16 @@ sonar {
// NNUE inference pipeline — coverage requires a trained model file not present in CI
"**/bot/**/NNUE.scala," +
"**/bot/**/NNUEBot.scala," +
"**/bot/**/EvaluationNNUE.scala," +
// NBAI binary format loader/writer — error paths require crafted corrupt files; migrator is a one-shot tool
"**/bot/**/NbaiLoader.scala," +
"**/bot/**/NbaiModel.scala," +
"**/bot/**/NbaiMigrator.scala," +
"**/bot/**/NbaiWriter.scala," +
// PolyglotBook — binary I/O and dead-code guards (bit-masked fields can never exceed valid range)
"**/bot/**/PolyglotBook.scala",
"**/bot/**/PolyglotBook.scala," +
"**/bot/**/MoveOrdering.scala," +
"**/bot/**/AlphaBetaSearch.scala"
)
}
}