python3Packages.rnginline: disable test_file_url_roundtrip on python 3.14+ (#523373)

This commit is contained in:
Sandro 2026-05-24 11:17:37 +00:00 committed by GitHub
commit bac573a799
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,6 +2,7 @@
lib,
fetchPypi,
buildPythonPackage,
pythonAtLeast,
poetry-core,
lxml,
docopt-ng,
@ -43,6 +44,11 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTests = lib.optionals (pythonAtLeast "3.14") [
# pathname2url now emits RFC 1738 authority-prefixed file URLs for absolute paths
"test_file_url_roundtrip"
];
pythonImportsCheck = [ "rnginline" ];
meta = {