python3Packages.yamlfix: skip tests broken by click update

Broken since click was updated to 8.2.1 in
https://github.com/NixOS/nixpkgs/pull/448189
This commit is contained in:
Gaetan Lepage
2025-10-24 13:29:22 +00:00
parent 994e3e2300
commit 94b9cca422
@@ -52,6 +52,12 @@ buildPythonPackage rec {
"-Wignore::ResourceWarning"
];
disabledTestPaths = [
# Broken since click was updated to 8.2.1 in https://github.com/NixOS/nixpkgs/pull/448189
# TypeError: CliRunner.__init__() got an unexpected keyword argument 'mix_stderr'
"tests/e2e/test_cli.py"
];
meta = {
description = "Python YAML formatter that keeps your comments";
homepage = "https://github.com/lyz-code/yamlfix";