python3Packages.aiofiles: skip failing test on darwin
This commit is contained in:
parent
b40c1582d7
commit
43dfcd24e2
1 changed files with 6 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
|||
{ lib
|
||||
{ stdenv
|
||||
, lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, poetry-core
|
||||
|
@ -30,6 +31,10 @@ buildPythonPackage rec {
|
|||
pytestCheckHook
|
||||
];
|
||||
|
||||
disabledTests = lib.optionals stdenv.isDarwin [
|
||||
"test_sendfile_file"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "aiofiles" ];
|
||||
|
||||
meta = {
|
||||
|
|
Loading…
Reference in a new issue