build(deps): Bump pytest-aiohttp from 1.0.5 to 1.1.0 in /requirements
Bumps pytest-aiohttp from 1.0.5 to 1.1.0.
Release notes
Sourced from pytest-aiohttp's releases.
pytest-aiohttp v1.1.0
pytest-aiohttp
pytest plugin for aiohttp support
The library provides useful fixtures for creation test aiohttp server and client.
Installation
.. code-block:: console
$ pip install pytest-aiohttpAdd
asyncio_mode = autoline topytest configuration <https://docs.pytest.org/en/latest/customize.html>_ (seepytest-asyncio modes <https://github.com/pytest-dev/pytest-asyncio#modes>_ for details). The plugin works withstrictmode also.Usage
Write tests in
pytest-asyncio <https://github.com/pytest-dev/pytest-asyncio>_ style using provided fixtures for aiohttp test server and client creation. The plugin provides resources cleanup out-of-the-box.The simple usage example:
.. code-block:: python
from aiohttp import webasync def hello(request): return web.Response(body=b"Hello, world")
def create_app(): app = web.Application() app.router.add_route("GET", "/", hello) return app
async def test_hello(aiohttp_client): client = await aiohttp_client(create_app()) resp = await client.get("/")
... (truncated)
Commits
5821546Release 1.1.0ca22197[pre-commit.ci] pre-commit autoupdate (#64)7aaad0bAdd host parameter to aiohttp_server fixture (#63)0866b16[pre-commit.ci] pre-commit autoupdate (#62)d6208f9Expose type annotations (#61)61057f1Export types at top-level (#60)1206cc4[pre-commit.ci] pre-commit autoupdate (#58)8887bfaSync from aiohttp (#56)98444cbDrop Python 3.8 (#57)- See full diff in compare view
You can trigger a rebase of this PR by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
-
@dependabot rebasewill rebase this PR -
@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it -
@dependabot mergewill merge this PR after your CI passes on it -
@dependabot squash and mergewill squash and merge this PR after your CI passes on it -
@dependabot cancel mergewill cancel a previously requested merge and block automerging -
@dependabot reopenwill reopen this PR if it is closed -
@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency -
@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Note Automatic rebases have been disabled on this pull request as it has been open for over 30 days.
@dependabot recreate
@dependabot recreate