summary refs log tree commit diff
path: root/pkgs/development/python-modules/mahotas
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2018-09-17 21:33:47 +0200
committerxeji <36407913+xeji@users.noreply.github.com>2018-09-17 21:33:47 +0200
commit5f2eacccf61c5535453a8160be3da643f319875e (patch)
tree45969f0fe799f94f3820d3ff2b0d4d9d59728bf6 /pkgs/development/python-modules/mahotas
parent883b86e065dd02942ad912834498712160387807 (diff)
downloadnixpkgs-5f2eacccf61c5535453a8160be3da643f319875e.tar
nixpkgs-5f2eacccf61c5535453a8160be3da643f319875e.tar.gz
nixpkgs-5f2eacccf61c5535453a8160be3da643f319875e.tar.bz2
nixpkgs-5f2eacccf61c5535453a8160be3da643f319875e.tar.lz
nixpkgs-5f2eacccf61c5535453a8160be3da643f319875e.tar.xz
nixpkgs-5f2eacccf61c5535453a8160be3da643f319875e.tar.zst
nixpkgs-5f2eacccf61c5535453a8160be3da643f319875e.zip
pythonPackages.mahotas: skip `test_moments.test_normalize` and `test_texture.test_haralick3d` testcase (#46793)
As stated in #46368, this package seems to have issues with impure tests
(reported in https://github.com/luispedro/mahotas/issues/97).

Unfortunately the `release-18.09` job on Hydra fails at the attempt to
build this package since `test_moments.test_normalize1` and
`test_texture.test_haralick3d` breaks. Until
the root cause is identified, we skip the disabled tests to ensure that
the resulting package is not entirely broken (which can't be confirmed
with `doCheck = false`).

See https://hydra.nixos.org/job/nixos/release-18.09/nixpkgs.python27Packages.mahotas.x86_64-linux
See https://hydra.nixos.org/job/nixos/release-18.09/nixpkgs.python36Packages.mahotas.x86_64-linux
See https://logs.nix.ci/?key=nixos/nixpkgs.46793&attempt_id=b85a638d-dcb0-41d3-ab2a-9616a3bb0175

/cc @xeji @luispedro
Diffstat (limited to 'pkgs/development/python-modules/mahotas')
-rw-r--r--pkgs/development/python-modules/mahotas/disable-impure-tests.patch42
1 files changed, 42 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/mahotas/disable-impure-tests.patch b/pkgs/development/python-modules/mahotas/disable-impure-tests.patch
index a61503f9522..f19bd329e66 100644
--- a/pkgs/development/python-modules/mahotas/disable-impure-tests.patch
+++ b/pkgs/development/python-modules/mahotas/disable-impure-tests.patch
@@ -32,3 +32,45 @@ index 462f467..2381793 100644
  def test_ellipse_axes():
      Y,X = np.mgrid[:1024,:1024]
      Y = Y/1024.
+diff --git a/mahotas/tests/test_moments.py b/mahotas/tests/test_moments.py
+index 686c7c3..ba3487b 100644
+--- a/mahotas/tests/test_moments.py
++++ b/mahotas/tests/test_moments.py
+@@ -1,6 +1,7 @@
+ import numpy as np
+ import mahotas as mh
+ from mahotas.features.moments import moments
++from nose.tools import nottest
+ 
+ def _slow(A, p0, p1, cm):
+     c0,c1 = cm
+@@ -28,7 +29,7 @@ def test_against_slow():
+     yield perform, 1, 2, (0, 0), A
+     yield perform, 1, 0, (0, 0), A
+ 
+-
++@nottest
+ def test_normalize():
+     A,B = np.meshgrid(np.arange(128),np.arange(128))
+     for p0,p1 in [(1,1), (1,2), (2,1), (2,2)]:
+diff --git a/mahotas/tests/test_texture.py b/mahotas/tests/test_texture.py
+index 7e101ba..af1305d 100644
+--- a/mahotas/tests/test_texture.py
++++ b/mahotas/tests/test_texture.py
+@@ -2,7 +2,7 @@ import numpy as np
+ from mahotas.features import texture
+ import mahotas as mh
+ import mahotas.features._texture
+-from nose.tools import raises
++from nose.tools import raises, nottest
+ 
+ def test__cooccurence():
+     cooccurence = mahotas.features._texture.cooccurence
+@@ -149,6 +149,7 @@ def test_float_haralick():
+     A[2,2]=12
+     texture.haralick(A)
+ 
++@nottest
+ def test_haralick3d():
+     np.random.seed(22)
+     img = mahotas.stretch(255*np.random.rand(20,20,4))