We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4a66e2 commit d556dadCopy full SHA for d556dad
1 file changed
.github/scripts/code-review/build-review-matrix.py
@@ -39,6 +39,10 @@ def parse_modules() -> list[tuple[str, str]]:
39
pairs = []
40
for entry in sorted(raw):
41
parts = entry.split(":")
42
+ # Skip shared/helper modules (e.g. "cdi-testing") that don't follow the
43
+ # <library>:<variant> layout used for real instrumentation modules.
44
+ if len(parts) < 2:
45
+ continue
46
module_dir = "instrumentation/" + "/".join(parts)
47
# Gradle module name: second-to-last:last
48
gradle_name = f"{parts[-2]}:{parts[-1]}"
0 commit comments