python313Packages.mypermobil: disable failing test

This commit is contained in:
Martin Weinelt
2025-01-05 03:13:02 +01:00
parent bd9cd0008a
commit bbfc767f21
@@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitHub,
pythonAtLeast,
setuptools,
aiocache,
aiohttp,
@@ -35,10 +36,15 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTests = [
# requires networking
"test_region"
];
disabledTests =
[
# requires networking
"test_region"
]
++ lib.optionals (pythonAtLeast "3.13") [
# AssertionError: MyPermobilAPIException not raised
"test_request_item_404"
];
meta = {
changelog = "https://github.com/Permobil-Software/mypermobil/releases/tag/v${version}";