Skip to content

Commit 9f07e22

Browse files
committed
Remove test as it's redundant to the check in test_its_own_wheel_does_not_contain_tests.
1 parent 5be48b9 commit 9f07e22

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

setuptools/tests/config/test_apply_pyprojecttoml.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
from inspect import cleandoc
1313
from pathlib import Path
1414
from unittest.mock import Mock
15-
from zipfile import ZipFile
1615

1716
import pytest
1817
from ini2toml.api import LiteTranslator
@@ -422,11 +421,6 @@ def test_example_file_in_sdist(self, setuptools_sdist):
422421
with tarfile.open(setuptools_sdist) as tar:
423422
assert any(name.endswith(EXAMPLES_FILE) for name in tar.getnames())
424423

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

431425
class TestInteropCommandLineParsing:
432426
def test_version(self, tmp_path, monkeypatch, capsys):

0 commit comments

Comments
 (0)