pytest-asyncio 0.5.0


pip install pytest-asyncio==0.5.0

Project Links

Meta
Author: Tin Tvrtkovic

Classifiers

Development Status
  • 4 - Beta

Intended Audience
  • Developers

License
  • OSI Approved :: Apache Software License

Programming Language
  • Python :: 3.3
  • Python :: 3.4
  • Python :: 3.5

Topic
  • Software Development :: Testing

Framework
  • Pytest
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
async def test_some_asyncio_code():
    res = await library.do_something()
    assert b'expected result' == res

or, if you’re using the pre-Python 3.5 syntax:

@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

  • easy testing with non-default event loops

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. By default, the loop will be closed at the end of the test (i.e. the default fixture scope is function).

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

This fixture can be easily overridden in any of the standard pytest locations (e.g. directly in the test file, or in conftest.py) to use a non-default event loop. This will take effect even if you’re using the pytest.mark.asyncio marker and not the event_loop fixture directly.

@pytest.yield_fixture()
def event_loop():
    loop = MyCustomLoop()
    yield loop
    loop.close()

A special pytest hook will ensure the produced loop is either set as the default global loop, or a special, error-throwing event loop policy is installed as the default policy (depending on the forbid_global_loop parameter). Fixtures depending on the event_loop fixture can expect the policy to be properly modified when they run.

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(forbid_global_loop=False)

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.

The event loop used can be overriden by overriding the event_loop fixture (see above).

If forbid_global_loop is true, asyncio.get_event_loop() will result in exceptions, ensuring your tests are always passing the event loop explicitly.

pytest.mark.asyncio_process_pool(forbid_global_loop=False)

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.

Changelog

0.5.0 (2016-09-07)

  • Introduced a changelog. #31

  • The event_loop fixture is again responsible for closing itself. This makes the fixture slightly harder to correctly override, but enables other fixtures to depend on it correctly. #30

  • Deal with the event loop policy by wrapping a special pytest hook, pytest_fixture_setup. This allows setting the policy before fixtures dependent on the event_loop fixture run, thus allowing them to take advantage of the forbid_global_loop parameter. As a consequence of this, we now depend on pytest 3.0. #29

0.4.1 (2016-06-01)

  • Fix a bug preventing the propagation of exceptions from the plugin. #25

0.4.0 (2016-05-30)

  • Make event_loop fixtures simpler to override by closing them in the plugin, instead of directly in the fixture. #21

  • Introduce the forbid_global_loop parameter. #21

0.3.0 (2015-12-19)

  • Support for Python 3.5 async/await syntax. #17

0.2.0 (2015-08-01)

  • unused_tcp_port_factory fixture. #10

0.1.1 (2015-04-23)

Initial release.

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.

1.0.0 May 26, 2025
1.0.0a1 May 09, 2025
0.26.0 Mar 25, 2025
0.25.3 Jan 28, 2025
0.25.2 Jan 08, 2025
0.25.1 Jan 02, 2025
0.25.0 Dec 13, 2024
0.24.0 Aug 22, 2024
0.24.0a1 Aug 09, 2024
0.24.0a0 Jul 30, 2024
0.23.8 Jul 17, 2024
0.23.7 May 19, 2024
0.23.6 Mar 19, 2024
0.23.5.post1 Mar 08, 2024
0.23.5 Feb 09, 2024
0.23.5a0 Feb 06, 2024
0.23.4 Jan 28, 2024
0.23.4a2 Jan 16, 2024
0.23.4a1 Jan 10, 2024
0.23.4a0 Jan 09, 2024
0.23.3 Jan 01, 2024
0.23.3a0 Dec 09, 2023
0.23.2 Dec 04, 2023
0.23.1 Dec 03, 2023
0.23.0 Dec 03, 2023
0.23.0b0 Nov 27, 2023
0.23.0a1 Nov 16, 2023
0.23.0a0 Nov 12, 2023
0.22.0 Oct 31, 2023
0.21.2 Apr 29, 2024
0.21.1 Jul 12, 2023
0.21.0 Mar 19, 2023
0.20.3 Dec 08, 2022
0.20.2 Nov 11, 2022
0.20.1 Oct 21, 2022
0.20.0 Oct 21, 2022
0.19.0 Jul 15, 2022
0.18.3 Mar 25, 2022
0.18.2 Mar 03, 2022
0.18.1 Feb 10, 2022
0.18.0 Feb 07, 2022
0.17.2 Jan 17, 2022
0.17.1 Jan 16, 2022
0.17.0 Jan 13, 2022
0.17.0a6 Jan 13, 2022
0.17.0a4 Jan 13, 2022
0.17.0a3 Jan 13, 2022
0.16.0 Oct 15, 2021
0.15.1 Apr 21, 2021
0.15.0 Apr 18, 2021
0.14.0 Jun 23, 2020
0.12.0 May 03, 2020
0.11.0 Apr 20, 2020
0.10.0 Jan 08, 2019
0.10.0.dev0 Jan 08, 2019
0.9.0 Jul 28, 2018
0.8.0 Sep 23, 2017
0.7.0 Sep 08, 2017
0.6.0 May 28, 2017
0.5.0 Sep 06, 2016
0.4.1 Jun 01, 2016
0.3.0 Dec 19, 2015
0.2.0 Aug 02, 2015
0.1.3 May 01, 2015
0.1.2 Apr 25, 2015
0.1.1 Apr 23, 2015
0.1 Apr 11, 2015

Wheel compatibility matrix

Platform Python 3
any

Files in release

Extras: None
Dependencies:
pytest (>=3.0.2)
asyncio