mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
python3Packages.rnginline: disable test_file_url_roundtrip on python 3.14+ (#523373)
This commit is contained in:
commit
bac573a799
1 changed files with 6 additions and 0 deletions
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue