From 5431bf7e773940c35e97bf627f1a753df0e36be6 Mon Sep 17 00:00:00 2001 From: Eric Anderson Date: Thu, 14 Nov 2024 14:18:40 -0800 Subject: [PATCH] services: Don't track code coverage of reflection.v1 gencode Generated code for v1alpha was ignored, but not v1. Ignoring v1 reduces lines being checked from 16,145 to 6,303, significantly improving the overall code coverage and removing noise. This was noticed because there was a very clear drop at 0aa976c4 visible in the coveralls.io coverage graph, the point when v1 was introduced. --- services/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/services/build.gradle b/services/build.gradle index fade7aef3fb..6daa7b0511d 100644 --- a/services/build.gradle +++ b/services/build.gradle @@ -58,6 +58,7 @@ tasks.named("jacocoTestReport").configure { '**/io/grpc/binarylog/v1/**', '**/io/grpc/channelz/v1/**', '**/io/grpc/health/v1/**', + '**/io/grpc/reflection/v1/**', '**/io/grpc/reflection/v1alpha/**', ]) }