python313Packages.mypermobil: disable failing test
This commit is contained in:
@@ -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}";
|
||||
|
||||
Reference in New Issue
Block a user