python3Packages.httpie: disable tests broken on Python 3.14

This commit is contained in:
Harinn
2026-05-11 21:31:21 +07:00
parent cda48547b4
commit f788c73282
@@ -1,6 +1,5 @@
{
lib,
stdenv,
buildPythonPackage,
charset-normalizer,
defusedxml,
@@ -14,6 +13,7 @@
pytest-lazy-fixture,
pytest-mock,
pytestCheckHook,
pythonAtLeast,
requests-toolbelt,
requests,
responses,
@@ -98,6 +98,8 @@ buildPythonPackage rec {
"test_naked_invocation"
# Test is flaky
"test_stdin_read_warning"
# flaky: daemon status check exceeds attempt limit
"test_daemon_runner"
# httpbin compatibility issues
"test_binary_suppresses_when_terminal"
"test_binary_suppresses_when_not_terminal_but_pretty"
@@ -107,9 +109,9 @@ buildPythonPackage rec {
"test_terminal_output_response_charset_detection"
"test_terminal_output_request_charset_detection"
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
# Test is flaky
"test_daemon_runner"
++ lib.optionals (pythonAtLeast "3.14") [
# https://github.com/httpie/cli/issues/1641
"test_lazy_choices_help"
];
meta = {