Skip to content

Commit

Permalink
Merge pull request #173073 from risicle/ris-seaborn-non-x86-test-prec…
Browse files Browse the repository at this point in the history
…ision

python3Packages.seaborn: skip overly-strict-precision tests on non-x86
  • Loading branch information
risicle authored May 16, 2022
2 parents aaf0d5d + 9660c20 commit fef077c
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 fef077c

Please sign in to comment.