mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
ee897b64ff
See https://hydra.nixos.org/build/80828287 Moves `mahotas` out of `python-packages.nix` into its own file and fixes broken test cases by skipping them using nosetest's `@nottest` annotation. These tests broke from time to time in a sandbox and are therefore considered impure. Addresses #45960
35 lines
1.0 KiB
Diff
35 lines
1.0 KiB
Diff
diff --git a/mahotas/tests/test_colors.py b/mahotas/tests/test_colors.py
|
|
index 8a8183b..0d34c9f 100644
|
|
--- a/mahotas/tests/test_colors.py
|
|
+++ b/mahotas/tests/test_colors.py
|
|
@@ -2,7 +2,9 @@ import mahotas
|
|
import numpy as np
|
|
from mahotas.tests.utils import luispedro_jpg
|
|
from mahotas.colors import rgb2xyz, rgb2lab, xyz2rgb, rgb2grey, rgb2sepia
|
|
+from nose.tools import nottest
|
|
|
|
+@nottest
|
|
def test_colors():
|
|
f = luispedro_jpg()
|
|
lab = rgb2lab(f)
|
|
diff --git a/mahotas/tests/test_features_shape.py b/mahotas/tests/test_features_shape.py
|
|
index 462f467..2381793 100644
|
|
--- a/mahotas/tests/test_features_shape.py
|
|
+++ b/mahotas/tests/test_features_shape.py
|
|
@@ -2,6 +2,7 @@ import mahotas.features.shape
|
|
import numpy as np
|
|
import mahotas as mh
|
|
from mahotas.features.shape import roundness, eccentricity
|
|
+from nose.tools import nottest
|
|
|
|
def test_eccentricity():
|
|
D = mh.disk(32, 2)
|
|
@@ -29,6 +30,7 @@ def test_zeros():
|
|
I[8:4:12] = 1
|
|
assert eccentricity(I) == 0
|
|
|
|
+@nottest
|
|
def test_ellipse_axes():
|
|
Y,X = np.mgrid[:1024,:1024]
|
|
Y = Y/1024.
|