mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
pythonPackages.asyncio-dgram: Disable tests on darwin
This commit is contained in:
parent
445d1ee786
commit
96ba5c472c
@ -1,4 +1,5 @@
|
||||
{ lib
|
||||
{ stdenv
|
||||
, lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pytestCheckHook
|
||||
@ -16,9 +17,12 @@ buildPythonPackage rec {
|
||||
sha256 = "1zkmjvq47zw2fsbnzhr5mh9rsazx0z1f8m528ash25jrxsza5crm";
|
||||
};
|
||||
|
||||
# OSError: AF_UNIX path too long
|
||||
doCheck = !stdenv.isDarwin;
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
pytest-asyncio
|
||||
pytest-asyncio
|
||||
];
|
||||
|
||||
disabledTests = [ "test_protocol_pause_resume" ];
|
||||
|
Loading…
Reference in New Issue
Block a user