Skip to main content

Pytest support for asyncio.

Project description

https://img.shields.io/pypi/v/pytest-asyncio.svg https://travis-ci.org/pytest-dev/pytest-asyncio.svg?branch=master https://coveralls.io/repos/pytest-dev/pytest-asyncio/badge.svg

pytest-asyncio is an Apache2 licensed library, written in Python, for testing asyncio code with pytest.

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.mark.asyncio
def test_some_asyncio_code():
    res = yield from library.do_something()
    assert b'expected result' == res

pytest-asyncio has been strongly influenced by pytest-tornado.

Features

  • fixtures for creating and injecting versions of the asyncio event loop

  • fixtures for injecting unused tcp ports

  • pytest markers for treating tests as asyncio coroutines

Installation

To install pytest-asyncio, simply:

$ pip install pytest-asyncio

This is enough for pytest to pick up pytest-asyncio.

Fixtures

event_loop

Creates and injects a new instance of the default asyncio event loop. The loop will be closed at the end of the test.

Note that just using the event_loop fixture won’t make your test function a coroutine. You’ll need to interact with the event loop directly, using methods like event_loop.run_until_complete. See the pytest.mark.asyncio marker for treating test functions like coroutines.

def test_http_client(event_loop):
    url = 'http://httpbin.org/get'
    resp = event_loop.run_until_complete(http_client(url))
    assert b'HTTP/1.1 200 OK' in resp

event_loop_process_pool

The event_loop_process_pool fixture is almost identical to the event_loop fixture, except the created event loop will have a concurrent.futures.ProcessPoolExecutor set as the default executor.

unused_tcp_port

Finds and yields a single unused TCP port on the localhost interface. Useful for binding temporary test servers.

unused_tcp_port_factory

A callable which returns a different unused TCP port each invocation. Useful when several unused TCP ports are required in a test.

def a_test(unused_tcp_port_factory):
    port1, port2 = unused_tcp_port_factory(), unused_tcp_port_factory()
    ...

Markers

pytest.mark.asyncio

Mark your test coroutine with this marker and pytest will execute it as an asyncio task using the event loop provided by the event_loop fixture. See the introductory section for an example.

pytest.mark.asyncio_process_pool

The asyncio_process_pool marker is almost identical to the asyncio marker, except the event loop used will have a concurrent.futures.ProcessPoolExecutor set as the default executor.

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

This version

0.2.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pytest-asyncio-0.2.0.tar.gz (4.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pytest_asyncio-0.2.0-py3-none-any.whl (6.5 kB view details)

Uploaded Python 3

File details

Details for the file pytest-asyncio-0.2.0.tar.gz.

File metadata

File hashes

Hashes for pytest-asyncio-0.2.0.tar.gz
Algorithm Hash digest
SHA256 90791727803a0e4d0daa3c194cf8b5cd1132c5e87b24286e6d7cb0fb975d8390
MD5 4cd7009570967eb5592614593cb1a45f
BLAKE2b-256 92961af276c7864a17cfcda3813fda074f202ad48b5d4432af1b7e9740018084

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytest_asyncio-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b69d9a36f901badedd5565827079e593a581927a19e2565bd114b4c3d4847c0d
MD5 bd62a60870eec5fe0ec8ff3fbf10bed2
BLAKE2b-256 cc489d5e979b822ffc0d48d862b48e75b69ecd4267b68c04d31eeba5570366a9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page