mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
Merge pull request #173073 from risicle/ris-seaborn-non-x86-test-precision
python3Packages.seaborn: skip overly-strict-precision tests on non-x86
This commit is contained in:
commit
fef077c328
1 changed files with 6 additions and 2 deletions
|
@ -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…
Reference in a new issue