Skip to content

Commit

Permalink
Remove test as it's redundant to the check in test_its_own_wheel_does…
Browse files Browse the repository at this point in the history
…_not_contain_tests.
  • Loading branch information
jaraco committed Jul 18, 2024
1 parent 5be48b9 commit fa90a9d
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions setuptools/tests/config/test_apply_pyprojecttoml.py
Original file line number Diff line number Diff line change
Expand Up @@ -422,11 +422,6 @@ def test_example_file_in_sdist(self, setuptools_sdist):
with tarfile.open(setuptools_sdist) as tar:
assert any(name.endswith(EXAMPLES_FILE) for name in tar.getnames())

def test_example_file_not_in_wheel(self, setuptools_wheel):
"""Meta test to ensure auxiliary test files are not in wheel"""
with ZipFile(setuptools_wheel) as zipfile:
assert not any(name.endswith(EXAMPLES_FILE) for name in zipfile.namelist())


class TestInteropCommandLineParsing:
def test_version(self, tmp_path, monkeypatch, capsys):
Expand Down

0 comments on commit fa90a9d

Please sign in to comment.