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
@@ -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 = {