python3Packages.fnllm: skip failing test on python>=3.14

Tracking: https://github.com/NixOS/nixpkgs/issues/475732
This commit is contained in:
Gaetan Lepage
2026-02-01 10:47:13 +00:00
parent ddfdf9d200
commit 8e2efe8a33
@@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchPypi,
pythonAtLeast,
# build-system
hatchling,
@@ -88,6 +89,10 @@ buildPythonPackage (finalAttrs: {
"test_clear"
"test_handles_common_errors"
"test_children"
]
++ lib.optionals (pythonAtLeast "3.14") [
# RuntimeError: There is no current event loop in thread 'MainThread'
"test_call_batch_raises_if_response_length_mismatch"
];
meta = {