From 56c21f04d1ef198f6e91626d01d70cff6c0bcb3c Mon Sep 17 00:00:00 2001 From: figsoda Date: Thu, 18 May 2023 22:34:25 -0400 Subject: [PATCH] python310Packages.pyshark: skip flaky test --- pkgs/development/python-modules/pyshark/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pyshark/default.nix b/pkgs/development/python-modules/pyshark/default.nix index 52a0b55aaf8..cef7660d63e 100644 --- a/pkgs/development/python-modules/pyshark/default.nix +++ b/pkgs/development/python-modules/pyshark/default.nix @@ -49,7 +49,11 @@ buildPythonPackage rec { nativeCheckInputs = [ py pytestCheckHook wireshark-cli ]; - disabledTests = lib.optionals stdenv.isDarwin [ + disabledTests = [ + # flaky + # KeyError: 'Packet of index 0 does not exist in capture' + "test_getting_packet_summary" + ] ++ lib.optionals stdenv.isDarwin [ # fails on darwin # _pickle.PicklingError: logger cannot be pickled "test_iterate_empty_psml_capture"