python3Packages.fire: disable testFireAsyncio for Python 3.14 (#480040)

This commit is contained in:
Gaétan Lepage
2026-01-15 12:27:55 +00:00
committed by GitHub
@@ -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 = {