pythonPackages.asyncio-dgram: Disable tests on darwin

This commit is contained in:
Sandro Jäckel 2021-01-07 20:13:24 +01:00
parent 445d1ee786
commit 96ba5c472c
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -1,4 +1,5 @@
{ lib { stdenv
, lib
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, pytestCheckHook , pytestCheckHook
@ -16,9 +17,12 @@ buildPythonPackage rec {
sha256 = "1zkmjvq47zw2fsbnzhr5mh9rsazx0z1f8m528ash25jrxsza5crm"; sha256 = "1zkmjvq47zw2fsbnzhr5mh9rsazx0z1f8m528ash25jrxsza5crm";
}; };
# OSError: AF_UNIX path too long
doCheck = !stdenv.isDarwin;
checkInputs = [ checkInputs = [
pytestCheckHook pytestCheckHook
pytest-asyncio pytest-asyncio
]; ];
disabledTests = [ "test_protocol_pause_resume" ]; disabledTests = [ "test_protocol_pause_resume" ];