summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2025-08-09 18:33:38 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2025-08-09 19:08:53 +0200
commit4604e330bac6daa881ef9722ee3cdb6b800929c3 (patch)
tree05344636ef602ac76a79c92f3e21005b54a792e6
parentpython3Packages.pydaikin: disable failing async tests (diff)
downloadnixpkgs-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.nix2
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