We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85253bc commit 414c3ddCopy full SHA for 414c3dd
tests/test_sdist.py
@@ -217,6 +217,9 @@ def test_reproducible(package_pure, tmp_path):
217
assert sdist_path_a == sdist_path_b
218
assert tmp_path.joinpath('a', sdist_path_a).read_bytes() == tmp_path.joinpath('b', sdist_path_b).read_bytes()
219
220
+# ``meson dist`` does not handle tarballs containing symbolic links to absolute
221
+# paths on Python 3.14, see https://github.com/mesonbuild/meson/issues/15142
222
+@pytest.mark.skipif(sys.version_info >= (3, 14), reason='incompatible Python version')
223
@pytest.mark.filterwarnings('ignore:symbolic link')
224
def test_symlinks(tmp_path, sdist_symlinks):
225
with tarfile.open(sdist_symlinks, 'r:gz') as sdist:
0 commit comments