Unverified Commit 387f07bb authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

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

parents 1272e6ae 845a4a12
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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 = {