python3Packages.fire: disable testFireAsyncio for Python 3.14

This commit is contained in:
SkohTV
2026-01-14 13:59:45 -05:00
parent d13df0b7ec
commit 845a4a129e
@@ -9,6 +9,7 @@
levenshtein,
pytestCheckHook,
termcolor,
pythonAtLeast,
}:
buildPythonPackage rec {
@@ -37,6 +38,11 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTests = lib.optionals (pythonAtLeast "3.14") [
# RuntimeError: There is no current event loop in thread 'MainThread'
"testFireAsyncio"
];
pythonImportsCheck = [ "fire" ];
meta = {