python3Packages.fnllm: skip failing test on python>=3.14
Tracking: https://github.com/NixOS/nixpkgs/issues/475732
This commit is contained in:
@@ -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 = {
|
||||
|
||||
Reference in New Issue
Block a user