Commit 3ef8ee6b authored by Robert Schütz's avatar Robert Schütz
Browse files

python310Packages.Wand: run tests

parent 6d9eb6a8
Loading
Loading
Loading
Loading
+12 −2
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
, buildPythonPackage
, fetchPypi
, imagemagickBig
, pytestCheckHook
}:

buildPythonPackage rec {
@@ -19,8 +20,17 @@ buildPythonPackage rec {
      "magick_home = '${imagemagickBig}'"
  '';

  # tests not included with pypi release
  doCheck = false;
  checkInputs = [
    pytestCheckHook
  ];

  disabledTests = [
    # https://github.com/emcconville/wand/issues/558
    "test_forward_fourier_transform"
    "test_inverse_fourier_transform"
    # our imagemagick doesn't set MagickReleaseDate
    "test_configure_options"
  ];

  passthru.imagemagick = imagemagickBig;