Skip to content
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

test: Expand testing for wheel multi-version multi-platform #608

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update docstring comment format
Co-authored-by: Brett Cannon <brett@python.org>
  • Loading branch information
jacobdr and brettcannon authored Nov 9, 2022
commit e6105780ad1aab51ddf0ea3d50be441510a2f655
4 changes: 1 addition & 3 deletions tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,7 @@ def test_parse_wheel_filename(filename, name, version, build, tags):
],
)
def test_parse_wheel_invalid_filename(filename):
"""
See https://peps.python.org/pep-0427/#file-name-convention for the spec
"""
# See https://peps.python.org/pep-0427/#file-name-convention for the spec.
with pytest.raises(InvalidWheelFilename):
parse_wheel_filename(filename)

Expand Down