python311Packages.papermill: disable failing test

This commit is contained in:
Martin Weinelt 2024-03-24 22:00:19 +01:00
parent 3bfe29446d
commit 91b95f5b1e
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
1 changed files with 4 additions and 5 deletions

View File

@ -91,11 +91,10 @@ buildPythonPackage rec {
"papermill"
];
pytestFlagsArray = [
"-W" "ignore::pytest.PytestRemovedIn8Warning"
];
disabledTests = lib.optionals stdenv.isDarwin [
disabledTests = [
# pytest 8 compat
"test_read_with_valid_file_extension"
] ++ lib.optionals stdenv.isDarwin [
# might fail due to the sandbox
"test_end2end_autosave_slow_notebook"
];