pytest-asyncio (original) (raw)

Project description

https://img.shields.io/pypi/v/pytest-asyncio.svg https://github.com/pytest-dev/pytest-asyncio/workflows/CI/badge.svg https://codecov.io/gh/pytest-dev/pytest-asyncio/branch/main/graph/badge.svg Supported Python versions Matrix chat room: #pytest-asyncio

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.IsolatedAsyncioTestCaseor 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.

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

File details

Details for the file pytest_asyncio-0.26.0.tar.gz.

File metadata

File hashes

Hashes for pytest_asyncio-0.26.0.tar.gz | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | c4df2a697648241ff39e7f0e4a73050b03f123f760673956cf0d72a4990e312f | | | MD5 | 6463f56f564ab33b34b9ab59a779f434 | | | BLAKE2b-256 | 8ec4453c52c659521066969523e87d85d54139bbd17b78f09532fb8eb8cdb58e | |

See more details on using hashes here.

File details

Details for the file pytest_asyncio-0.26.0-py3-none-any.whl.

File metadata

File hashes

Hashes for pytest_asyncio-0.26.0-py3-none-any.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 7b51ed894f4fbea1340262bdae5135797ebbe21d8638978e35d31c6d19f72fb0 | | | MD5 | 423ade7a0ff0e231aa55a425f1780062 | | | BLAKE2b-256 | 207f338843f449ace853647ace35870874f69a764d251872ed1b4de9f234822c | |

See more details on using hashes here.