python312Packages.devolo-plc-api: disable failing tests

The pytest-httpx upgrade caused a few request mismatches here and there.
This commit is contained in:
Martin Weinelt
2024-11-07 19:05:08 +01:00
parent 5fd3b7e32d
commit f3e4138399
@@ -31,7 +31,7 @@ buildPythonPackage rec {
postPatch = ''
substituteInPlace pyproject.toml \
--replace "protobuf>=4.22.0" "protobuf"
--replace-fail "protobuf>=4.22.0" "protobuf"
'';
nativeBuildInputs = [ setuptools-scm ];
@@ -53,6 +53,11 @@ buildPythonPackage rec {
syrupy
];
disabledTests = [
# pytest-httpx compat issue
"test_wrong_password_type"
];
pythonImportsCheck = [ "devolo_plc_api" ];
meta = with lib; {