tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python313Packages.mypermobil: disable failing test
Martin Weinelt
1 year ago
bbfc767f
bd9cd000
+10
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
mypermobil
default.nix
+10
-4
pkgs/development/python-modules/mypermobil/default.nix
···
2
2
lib,
3
3
buildPythonPackage,
4
4
fetchFromGitHub,
5
5
+
pythonAtLeast,
5
6
setuptools,
6
7
aiocache,
7
8
aiohttp,
···
35
36
pytestCheckHook
36
37
];
37
38
38
38
-
disabledTests = [
39
39
-
# requires networking
40
40
-
"test_region"
41
41
-
];
39
39
+
disabledTests =
40
40
+
[
41
41
+
# requires networking
42
42
+
"test_region"
43
43
+
]
44
44
+
++ lib.optionals (pythonAtLeast "3.13") [
45
45
+
# AssertionError: MyPermobilAPIException not raised
46
46
+
"test_request_item_404"
47
47
+
];
42
48
43
49
meta = {
44
50
changelog = "https://github.com/Permobil-Software/mypermobil/releases/tag/v${version}";