tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.dask-image: fix failing test
Gaetan Lepage
1 year ago
dc6728cd
4419694d
+4
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
dask-image
default.nix
+4
pkgs/development/python-modules/dask-image/default.nix
reviewed
···
35
35
postPatch = ''
36
36
substituteInPlace dask_image/ndinterp/__init__.py \
37
37
--replace-fail "out_bounds.ptp(axis=1)" "np.ptp(out_bounds, axis=1)"
38
38
+
39
39
+
substituteInPlace tests/test_dask_image/test_imread/test_core.py \
40
40
+
--replace-fail "fh.save(" "fh.write("
38
41
'';
39
42
40
43
build-system = [
···
67
64
# AttributeError: 'str' object has no attribute 'start'
68
65
"test_find_objects"
69
66
"test_3d_find_objects"
67
67
+
70
68
# AssertionError (comparing slices)
71
69
"test_find_objects_with_empty_chunks"
72
70
];