python3Packages.circus: disable failing tests on python 3.14

This commit is contained in:
Harinn
2026-05-12 01:19:18 +07:00
parent addd636375
commit cd76ff678a
@@ -6,6 +6,7 @@
flit-core,
psutil,
pytestCheckHook,
pythonAtLeast,
pyyaml,
pyzmq,
tornado,
@@ -47,6 +48,15 @@ buildPythonPackage rec {
"test_resource_watcher_min_mem_abs"
# Compares with magic string
"test_streams"
]
++ lib.optionals (pythonAtLeast "3.14") [
# argparse output prefix changed in 3.14
"test_help_invalid_command"
# multiprocessing signal handler test times out under 3.14
"test_handler"
# tests/venv fixture lacks a python3.14 sitedir
"test_venv"
"test_venv_site_packages"
];
pythonImportsCheck = [ "circus" ];