mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
python314Packages.ipython: disable timing sensitive tests (#536908)
This commit is contained in:
commit
3e4be31224
1 changed files with 6 additions and 1 deletions
|
|
@ -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"
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue