mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
python3Packages.seaborn: disable failing tests
This commit is contained in:
parent
f6cfdc97cc
commit
349544f7c7
@ -32,14 +32,24 @@ buildPythonPackage rec {
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
# Tests fail because of AttributeError:...
|
||||
"TestKDEPlotBivariate"
|
||||
"TestBoxPlotter"
|
||||
"TestCatPlot"
|
||||
"TestKDEPlotUnivariate"
|
||||
"test_with_rug"
|
||||
"test_bivariate_kde_norm"
|
||||
];
|
||||
|
||||
pythonImportsCheck= [
|
||||
"seaborn"
|
||||
];
|
||||
|
||||
meta = {
|
||||
meta = with lib; {
|
||||
description = "Statisitical data visualization";
|
||||
homepage = "https://seaborn.pydata.org/";
|
||||
license = with lib.licenses; [ bsd3 ];
|
||||
maintainers = with lib.maintainers; [ fridh ];
|
||||
license = with licenses; [ bsd3 ];
|
||||
maintainers = with maintainers; [ fridh ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user