Skip to content

fix: filename can contain ',' (#587) #595

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Conversation

Freed-Wu
Copy link

Fix #587

Copy link

codecov bot commented May 30, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 92.82%. Comparing base (8b41121) to head (f0d6318).

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #595   +/-   ##
=======================================
  Coverage   92.82%   92.82%           
=======================================
  Files          21       21           
  Lines        1771     1771           
  Branches      333      333           
=======================================
  Hits         1644     1644           
  Misses         77       77           
  Partials       50       50           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@@ -182,7 +182,7 @@ def iter_files(self) -> Generator[Path]:
record = record_names[0].read_text()
reader = csv.reader(r for r in record.splitlines())
for row in reader:
filename = row[0]
filename = ",".join(row[0:-2])
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

shouldn't this change covered by appropriate test?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IMO the change is too small. even case is rare.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[bug] If filename contains ',', auditwheel repair will fail
2 participants