Skip to content

Commit

Permalink
python3Packages.seaborn: skip overly-strict-precision tests on non-x86
Browse files Browse the repository at this point in the history
  • Loading branch information
risicle committed May 15, 2022
1 parent 82c1de0 commit 9660c20
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions pkgs/development/python-modules/seaborn/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, matplotlib
Expand Down Expand Up @@ -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"
];

Expand Down

0 comments on commit 9660c20

Please sign in to comment.