Merge pull request #108876 from veehaitch/asgiref-fix-darwin

python3Packages.asgiref: disable test on Darwin
This commit is contained in:
Sandro 2021-01-10 08:09:22 +01:00 committed by GitHub
commit ae085e734b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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;