From 810e7f087040b4f511ecc42615ae370fbe0a1be1 Mon Sep 17 00:00:00 2001 From: mio Date: Sun, 19 Oct 2025 15:02:46 +0000 Subject: [PATCH] community/py3-outcome: add asyncio provider to checkdepends Add an asyncio provider to complete test_async.py tests. ``` ________________________________ test_acapture _________________________________ async def functions are not natively supported. You need to install a suitable plugin for your async framework, for example: - anyio - pytest-asyncio - pytest-tornasync - pytest-trio - pytest-twisted [...] =========================== short test summary info ============================ FAILED tests/test_async.py::test_acapture - Failed: async def functions are n... FAILED tests/test_async.py::test_asend - Failed: async def functions are not ... FAILED tests/test_async.py::test_traceback_frame_removal - Failed: async def ... ``` --- community/py3-outcome/APKBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/community/py3-outcome/APKBUILD b/community/py3-outcome/APKBUILD index 1730eb8a9d2..a340c6d3bfd 100644 --- a/community/py3-outcome/APKBUILD +++ b/community/py3-outcome/APKBUILD @@ -16,7 +16,7 @@ makedepends=" py3-setuptools py3-wheel " -checkdepends="py3-pytest" +checkdepends="py3-pytest py3-pytest-asyncio" subpackages="$pkgname-pyc" source="https://pypi.python.org/packages/source/o/outcome/outcome-$pkgver.tar.gz" builddir="$srcdir/outcome-$pkgver"