about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-10 08:09:22 +0100
committerGitHub <noreply@github.com>2021-01-10 08:09:22 +0100
commitae085e734b530273ae587209c28d012be39933d5 (patch)
tree57677721461a609d624ee5a6c5e1388bbb7791d8
parent9f3aa1bb43964652766f1e7d15a5f4b98cb7cf2b (diff)
parentcaaf5daa95f4291bf4d88e7cfa7f32a72ea0e805 (diff)
downloadnixlib-ae085e734b530273ae587209c28d012be39933d5.tar
nixlib-ae085e734b530273ae587209c28d012be39933d5.tar.gz
nixlib-ae085e734b530273ae587209c28d012be39933d5.tar.bz2
nixlib-ae085e734b530273ae587209c28d012be39933d5.tar.lz
nixlib-ae085e734b530273ae587209c28d012be39933d5.tar.xz
nixlib-ae085e734b530273ae587209c28d012be39933d5.tar.zst
nixlib-ae085e734b530273ae587209c28d012be39933d5.zip
Merge pull request #108876 from veehaitch/asgiref-fix-darwin
python3Packages.asgiref: disable test on Darwin
-rw-r--r--pkgs/development/python-modules/asgiref/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/asgiref/default.nix b/pkgs/development/python-modules/asgiref/default.nix
index dc7b160b9432..a14c294bf682 100644
--- a/pkgs/development/python-modules/asgiref/default.nix
+++ b/pkgs/development/python-modules/asgiref/default.nix
@@ -5,6 +5,7 @@
 , pytest-asyncio
 , pytestCheckHook
 , pythonOlder
+, lib
 }:
 
 buildPythonPackage rec {
@@ -27,6 +28,10 @@ buildPythonPackage rec {
     pytest-asyncio
   ];
 
+  disabledTests = lib.optionals stdenv.isDarwin [
+    "test_multiprocessing"
+  ];
+
   meta = with stdenv.lib; {
     description = "Reference ASGI adapters and channel layers";
     license = licenses.bsd3;