From b48b9acd6307735a7d55bda6b45b78cbdc888b15 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Wed, 17 Jul 2024 21:20:30 -0400 Subject: [PATCH] Mark the file as xfail for now. It's more important to be able to include the important resources than to exclude unwanted ones. Ref #4475. --- setuptools/tests/test_setuptools.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setuptools/tests/test_setuptools.py b/setuptools/tests/test_setuptools.py index 176c7862dee..4424b1a93e9 100644 --- a/setuptools/tests/test_setuptools.py +++ b/setuptools/tests/test_setuptools.py @@ -301,6 +301,7 @@ def test_findall_missing_symlink(tmpdir, can_symlink): assert found == [] +@pytest.mark.xfail(reason="slated for removal; excluding tests is hard #4475") def test_its_own_wheel_does_not_contain_tests(setuptools_wheel): with ZipFile(setuptools_wheel) as zipfile: contents = [f.replace(os.sep, '/') for f in zipfile.namelist()]