From 79147264abdadc7b5cf0a3260bd8aaedf17aa81a Mon Sep 17 00:00:00 2001 From: Badi' Abdul-Wahid Date: Mon, 11 May 2020 18:21:27 -0500 Subject: [PATCH] python3.pkgs.ipykernel: skip test_unc_paths on darwin (#87628) * Skip `test_unc_paths` on darwin * point to upstream issue Co-authored-by: Dmitry Kalinkin Co-authored-by: Dmitry Kalinkin --- pkgs/development/python-modules/ipykernel/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/ipykernel/default.nix b/pkgs/development/python-modules/ipykernel/default.nix index faf8d4b31b0..edf9d0863a1 100644 --- a/pkgs/development/python-modules/ipykernel/default.nix +++ b/pkgs/development/python-modules/ipykernel/default.nix @@ -42,6 +42,9 @@ buildPythonPackage rec { "test_subprocess_print" "test_subprocess_error" "test_ipython_start_kernel_no_userns" + + # https://github.com/ipython/ipykernel/issues/506 + "test_unc_paths" ] ++ lib.optionals (pythonOlder "3.8") [ # flaky test https://github.com/ipython/ipykernel/issues/485 "test_shutdown"