python314Packages.ipython: disable timing sensitive tests (#536908)

This commit is contained in:
Sandro 2026-07-02 12:56:54 +00:00 committed by GitHub
commit 3e4be31224
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -85,7 +85,12 @@ buildPythonPackage (finalAttrs: {
testpath
];
disabledTests = lib.optionals (stdenv.hostPlatform.isDarwin) [
disabledTests = [
# timing sensitive
"test_debug_magic_passes_through_generators"
"test_nest_embed"
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
# FileNotFoundError: [Errno 2] No such file or directory: 'pbpaste'
"test_clipboard_get"
];