python3Packages.seaborn: skip overly-strict-precision tests on non-x86

main
Robert Scott 2 years ago
parent 82c1de0115
commit 9660c200ee
  1. 8
      pkgs/development/python-modules/seaborn/default.nix

@ -1,4 +1,5 @@
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, matplotlib
@ -33,16 +34,19 @@ buildPythonPackage rec {
];
disabledTests = [
# Tests fail because of AttributeError:...
# incompatible with matplotlib 3.5
"TestKDEPlotBivariate"
"TestBoxPlotter"
"TestCatPlot"
"TestKDEPlotUnivariate"
"test_with_rug"
"test_bivariate_kde_norm"
] ++ lib.optionals (!stdenv.hostPlatform.isx86) [
# overly strict float tolerances
"TestDendrogram"
];
pythonImportsCheck= [
pythonImportsCheck = [
"seaborn"
];

Loading…
Cancel
Save