summaryrefslogtreecommitdiff
path: root/devel/py-pytest-asyncio/pkg-descr
diff options
context:
space:
mode:
Diffstat (limited to 'devel/py-pytest-asyncio/pkg-descr')
-rw-r--r--devel/py-pytest-asyncio/pkg-descr8
1 files changed, 5 insertions, 3 deletions
diff --git a/devel/py-pytest-asyncio/pkg-descr b/devel/py-pytest-asyncio/pkg-descr
index 6d11ecea8ff4..73eb827208d7 100644
--- a/devel/py-pytest-asyncio/pkg-descr
+++ b/devel/py-pytest-asyncio/pkg-descr
@@ -1,3 +1,5 @@
-asyncio code is usually written in the form of coroutines, which makes it
-slightly more difficult to test using normal testing tools. pytest-asyncio
-provides useful fixtures and markers to make testing easier.
+pytest-asyncio is a pytest plugin. It facilitates testing of code that uses the
+asyncio library.
+
+Specifically, pytest-asyncio provides support for coroutines as test functions.
+This allows users to await code inside their tests.