python3Packages.pycyphal: disable doctests broken by asyncio task leaks on python 3.14 (#523375)

This commit is contained in:
Michael Daniels
2026-05-23 15:44:14 +00:00
committed by GitHub
@@ -95,6 +95,13 @@ buildPythonPackage rec {
"pycyphal/application/register/_value.py"
];
disabledTests = lib.optionals (pythonAtLeast "3.14") [
# leaked tasks from prior doctest's event loop break doctest stdout capture, causing "Got nothing" on REPL-style assertions
"MonotonicClusteringSynchronizer"
"TransferIDSynchronizer"
"PythonCANMedia"
];
pythonImportsCheck = [ "pycyphal" ];
meta = {