From ec272fbc8da8d8ba6e388ec03066f092c65d40ed Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 8 Jul 2026 18:06:04 +0200 Subject: [PATCH] tlsrpt-reporter: disable failing tests These tests match on argparse output, which changed in Python 3.14. --- pkgs/by-name/tl/tlsrpt-reporter/package.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/by-name/tl/tlsrpt-reporter/package.nix b/pkgs/by-name/tl/tlsrpt-reporter/package.nix index fe34b0d91050..ad67d0e61a70 100644 --- a/pkgs/by-name/tl/tlsrpt-reporter/package.nix +++ b/pkgs/by-name/tl/tlsrpt-reporter/package.nix @@ -58,6 +58,13 @@ python3.pkgs.buildPythonApplication (finalAttrs: { python3.pkgs.pytestCheckHook ]; + disabledTests = [ + # argparse string matching offset since py314 + "test_b0rkcmd" + "test_intarg_cmd_float" + "test_intarg_cmd_string" + ]; + pythonImportsCheck = [ "tlsrpt_reporter" ];