Pytest support for asyncio
Project description
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. For example, the following code is executed as a test item by pytest:
@pytest.mark.asyncio
async def test_some_asyncio_code():
res = await library.do_something()
assert b"expected result" == res
More details can be found in the documentation.
Note that test classes subclassing the standard unittest library are not supported. Users are advised to use unittest.IsolatedAsyncioTestCase or an async framework such as asynctest.
pytest-asyncio is available under the Apache License 2.0.
Installation
To install pytest-asyncio, simply:
$ pip install pytest-asyncio
This is enough for pytest to pick up pytest-asyncio.
Contributing
Contributions are very welcome. Tests can be run with tox, please ensure the coverage at least stays the same before you submit a pull request.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for pytest_asyncio-0.23.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4e7093259ba018d58ede7d5315131d21923a60f8a6e9ee266ce1589685c89eac |
|
MD5 | 03e8003e60d9f9af082f4666c32048d4 |
|
BLAKE2b-256 | ce0ca60bcaeb3ba2f938b4d76e535180ea9f43e8da5fa6933fd9401f6f6e46ae |