diff options
| author | Martin Weinelt <hexa@darmstadt.ccc.de> | 2025-08-09 18:33:38 +0200 |
|---|---|---|
| committer | Martin Weinelt <hexa@darmstadt.ccc.de> | 2025-08-09 19:08:53 +0200 |
| commit | 4604e330bac6daa881ef9722ee3cdb6b800929c3 (patch) | |
| tree | 05344636ef602ac76a79c92f3e21005b54a792e6 | |
| parent | python3Packages.pydaikin: disable failing async tests (diff) | |
| download | nixpkgs-4604e330bac6daa881ef9722ee3cdb6b800929c3.tar.gz | |
python3Packages.aioeafm: disable tests
All are async and not properly configured for pytest-asyncio.
| -rw-r--r-- | pkgs/development/python-modules/aioeafm/default.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/aioeafm/default.nix b/pkgs/development/python-modules/aioeafm/default.nix index 056e9bd6b8eb..95b287786cdd 100644 --- a/pkgs/development/python-modules/aioeafm/default.nix +++ b/pkgs/development/python-modules/aioeafm/default.nix @@ -37,6 +37,8 @@ buildPythonPackage rec { dependencies = [ aiohttp ]; + doCheck = false; # Failed: async def functions are not natively supported. + nativeCheckInputs = [ pytest-aiohttp pytestCheckHook |
