mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
python3Packages.seaborn: disable failing tests
These are probably related to the matplotlib 3.11 bump.
This commit is contained in:
parent
ffec75b842
commit
5aece2a413
1 changed files with 6 additions and 0 deletions
|
|
@ -12,6 +12,7 @@
|
|||
pandas,
|
||||
scipy,
|
||||
statsmodels,
|
||||
writableTmpDirAsHomeHook,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
|
@ -64,11 +65,16 @@ buildPythonPackage rec {
|
|||
nativeCheckInputs = [
|
||||
pytest-xdist
|
||||
pytest8_3CheckHook
|
||||
writableTmpDirAsHomeHook
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
# requires internet connection
|
||||
"test_load_dataset_string_error"
|
||||
# matplotlib error string matching
|
||||
"test_theme_validation"
|
||||
# log scale transformation match too strict
|
||||
"test_log_scale"
|
||||
]
|
||||
++ lib.optionals (!stdenv.hostPlatform.isx86) [
|
||||
# overly strict float tolerances
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue