Skip to content

Commit

Permalink
Merge branch 'master' into improveconfigs
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Oct 19, 2023
2 parents b7b3fe7 + 15de713 commit 209591e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion nixpkgs_review/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ def write_error_logs(attrs: list[Attr], directory: Path) -> None:
results = LazyDirectory(directory.joinpath("results"))
failed_results = LazyDirectory(directory.joinpath("failed_results"))
for attr in attrs:
if attr.blacklisted:
# Broken attrs have no drv_path.
if attr.blacklisted or attr.drv_path is None:
continue

if attr.path is not None and os.path.exists(attr.path):
Expand Down

0 comments on commit 209591e

Please sign in to comment.