From cd76ff678ab1c1d0bc8d68ab9202c3b5ae7a16a3 Mon Sep 17 00:00:00 2001 From: Harinn Date: Tue, 12 May 2026 01:19:18 +0700 Subject: [PATCH] python3Packages.circus: disable failing tests on python 3.14 --- pkgs/development/python-modules/circus/default.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pkgs/development/python-modules/circus/default.nix b/pkgs/development/python-modules/circus/default.nix index 8335e6db9d61..ca482a1802e1 100644 --- a/pkgs/development/python-modules/circus/default.nix +++ b/pkgs/development/python-modules/circus/default.nix @@ -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" ];