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
lib,
3
buildPythonPackage,
4
fetchFromGitHub,
0
5
setuptools,
6
aiocache,
7
aiohttp,
···
35
pytestCheckHook
36
];
37
38
-
disabledTests = [
39
-
# requires networking
40
-
"test_region"
41
-
];
0
0
0
0
0
42
43
meta = {
44
changelog = "https://github.com/Permobil-Software/mypermobil/releases/tag/v${version}";
···
2
lib,
3
buildPythonPackage,
4
fetchFromGitHub,
5
+
pythonAtLeast,
6
setuptools,
7
aiocache,
8
aiohttp,
···
36
pytestCheckHook
37
];
38
39
+
disabledTests =
40
+
[
41
+
# requires networking
42
+
"test_region"
43
+
]
44
+
++ lib.optionals (pythonAtLeast "3.13") [
45
+
# AssertionError: MyPermobilAPIException not raised
46
+
"test_request_item_404"
47
+
];
48
49
meta = {
50
changelog = "https://github.com/Permobil-Software/mypermobil/releases/tag/v${version}";