Skip to content

Commit

Permalink
TST: remove redundant and flaky test
Browse files Browse the repository at this point in the history
Looking for the string 'any' in the wheel filenames triggers when the
platform tag contains the string 'manylinux'. The ABI and platform
tags are anyhow verified a few lines above.
  • Loading branch information
dnicolodi committed Nov 10, 2022
1 parent ef67e0e commit e8afceb
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions tests/test_wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,6 @@ def test_scipy_like(wheel_scipy_like):
assert name.group('abi') == INTERPRETER_TAG
assert name.group('plat') == PLATFORM_TAG

# Extra checks to doubly-ensure that there are no issues with erroneously
# considering a package with an extension module as pure
assert 'none' not in wheel_filename(artifact)
assert 'any' not in wheel_filename(artifact)


@pytest.mark.skipif(platform.system() != 'Linux', reason='Needs library vendoring, only implemented in POSIX')
def test_contents(package_library, wheel_library):
Expand Down

0 comments on commit e8afceb

Please sign in to comment.