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 ...
```
This commit is contained in:
mio 2025-10-19 15:02:46 +00:00
parent 5e7b529c6a
commit 810e7f0870

View File

@ -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"