summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2021-05-22 14:21:55 +0100
committerRobert Scott <code@humanleg.org.uk>2021-05-22 14:26:24 +0100
commit7a28fcef8458cd732008f7b42d535d1465d30096 (patch)
tree436d93907774fef08e6eeeb380a103fc9b520888
parentbb35b1c11806b31e1e298e24b47224c9756b7e11 (diff)
downloadnixpkgs-7a28fcef8458cd732008f7b42d535d1465d30096.tar
nixpkgs-7a28fcef8458cd732008f7b42d535d1465d30096.tar.gz
nixpkgs-7a28fcef8458cd732008f7b42d535d1465d30096.tar.bz2
nixpkgs-7a28fcef8458cd732008f7b42d535d1465d30096.tar.lz
nixpkgs-7a28fcef8458cd732008f7b42d535d1465d30096.tar.xz
nixpkgs-7a28fcef8458cd732008f7b42d535d1465d30096.tar.zst
nixpkgs-7a28fcef8458cd732008f7b42d535d1465d30096.zip
python3Packages.jupyter_server: disable failing tests on darwin
-rw-r--r--pkgs/development/python-modules/jupyter_server/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/jupyter_server/default.nix b/pkgs/development/python-modules/jupyter_server/default.nix
index 50f193c2058..e444b2ea3c0 100644
--- a/pkgs/development/python-modules/jupyter_server/default.nix
+++ b/pkgs/development/python-modules/jupyter_server/default.nix
@@ -1,4 +1,5 @@
 { lib
+, stdenv
 , buildPythonPackage
 , fetchPypi
 , pythonOlder
@@ -71,6 +72,9 @@ buildPythonPackage rec {
     "test_list_formats"
     "test_base_url"
     "test_culling"
+  ] ++ lib.optionals stdenv.isDarwin [
+    # attempts to use trashcan, build env doesn't allow this
+    "test_delete"
   ];
 
   meta = with lib; {