From 5a3855b208e396da1f9b62575477e1902cdf821a Mon Sep 17 00:00:00 2001 From: Jorropo Date: Sun, 21 Dec 2025 14:11:18 +0100 Subject: [PATCH] in shame.py do not complain about missing targets (#9032) PR CI only runs a small subset of all tests. It is very likely a file we didn't found in the PR is just not tested in PR. --- bin/shame.py | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/bin/shame.py b/bin/shame.py index 9e9a7ea40..f2253bfdc 100644 --- a/bin/shame.py +++ b/bin/shame.py @@ -42,15 +42,9 @@ if len(newlyIntroduced) > 0: name, size = parseFile(f) markdown += f"| `{name}` | {size}b |\n" -removed = old - new -if len(removed) > 0: - markdown += "\n## Removed Targets\n\n" - # create a table - markdown += "| File | Size |\n" - markdown += "| ---- | ---- |\n" - for f in removed: - name, size = parseFile(f) - markdown += f"| `{name}` | {size}b |\n" +# do not log removed targets +# PRs only run a small subset of builds, so removed targets are not meaningful +# since they are very likely to just be not ran in PR CI both = old & new degradations = []