python3Packages.pycyphal: disable doctests broken by asyncio task leaks on python 3.14

This commit is contained in:
Harinn
2026-05-23 20:27:53 +07:00
parent 2bb5ecd583
commit 71fa9158c7
@@ -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 = {