Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
john-b-yang committed Jul 8, 2024
1 parent 4356cd7 commit dd00e18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions swebench/collect/build_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,8 @@ def load_repo(repo_name):
# If has test suite, write to output file
print(json.dumps(instance), end="\n", flush=True, file=output)
with_tests += 1
logger.info(f"[{", ".join(repos.keys())}] Total instances: {total_instances}, completed: {completed}, with tests: {with_tests}")
logger.info(f"[{", ".join(repos.keys())}] Skipped {len(seen_prs)} pull requests that have already been inspected")
logger.info(f"[{', '.join(repos.keys())}] Total instances: {total_instances}, completed: {completed}, with tests: {with_tests}")
logger.info(f"[{', '.join(repos.keys())}] Skipped {len(seen_prs)} pull requests that have already been inspected")


if __name__ == "__main__":
Expand Down

0 comments on commit dd00e18

Please sign in to comment.