python3Packages.click: ignore pytest 10 deprecations

They're fixed in 8.4.x but we're not quite ready yet to update.
This commit is contained in:
Martin Weinelt
2026-07-14 17:14:26 +02:00
parent 3c1cb4721b
commit 8e2a675d8a

View File

@@ -30,6 +30,10 @@ buildPythonPackage rec {
nativeCheckInputs = [ pytestCheckHook ];
pytestFlags = [
"-Wignore::pytest.PytestRemovedIn10Warning"
];
disabledTests = [
# for some reason the tests fail to execute cat, even though they run with less just fine,
# even adding coreutils to nativeCheckInputs explicitly does not change anything