Skip to content

Commit

Permalink
pkg_diffs.py: Keep known_failures
Browse files Browse the repository at this point in the history
  • Loading branch information
rhaschke committed Feb 22, 2025
1 parent 108b40f commit 5a8bfeb
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/scripts/pkg_diffs.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,6 @@ def is_same(left, right):
old = load_from_commit(os.getcwd(), args.sha, args.files)
new = load_from_commit(os.getcwd(), "HEAD", args.files)

try:
del new["known_failures"]
except KeyError:
pass

# Remove entries from new that already exist in old
for key, val in old["repositories"].items():
if key in new["repositories"] and is_same(new["repositories"][key], val):
Expand Down

0 comments on commit 5a8bfeb

Please sign in to comment.