Skip to content

build(deps-dev): bump pytest-aiohttp from 1.0.5 to 1.1.1#1152

Merged
bachya merged 1 commit into
devfrom
dependabot/pip/pytest-aiohttp-1.1.1
Jun 23, 2026
Merged

build(deps-dev): bump pytest-aiohttp from 1.0.5 to 1.1.1#1152
bachya merged 1 commit into
devfrom
dependabot/pip/pytest-aiohttp-1.1.1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 23, 2026

Copy link
Copy Markdown

Bumps pytest-aiohttp from 1.0.5 to 1.1.1.

Release notes

Sourced from pytest-aiohttp's releases.

pytest-aiohttp v1.1.1

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-aiohttp

Add asyncio_mode = auto line to pytest configuration <https://docs.pytest.org/en/latest/customize.html>_ (see pytest-asyncio modes <https://github.com/pytest-dev/pytest-asyncio#modes>_ for details). The plugin works with strict mode 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 web

async 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)

Changelog

Sourced from pytest-aiohttp's changelog.

1.1.1 (2026-06-08)

  • Drop Python 3.9 (#162)

  • Typing improvements (#69, #162)

1.1.0 (2025-01-23)

  • Drop Python 3.8 (#57)

  • Export the plugin types at top-level (#60, #61)

  • Add host parameter to aiohttp_server fixture (#63)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will 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 version will 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 dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [pytest-aiohttp](https://github.com/aio-libs/pytest-aiohttp) from 1.0.5 to 1.1.1.
- [Release notes](https://github.com/aio-libs/pytest-aiohttp/releases)
- [Changelog](https://github.com/aio-libs/pytest-aiohttp/blob/master/CHANGES.rst)
- [Commits](aio-libs/pytest-aiohttp@v1.0.5...v1.1.1)

---
updated-dependencies:
- dependency-name: pytest-aiohttp
  dependency-version: 1.1.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Upgrade or downgrade of project dependencies python Pull requests that update Python code labels Jun 23, 2026
@bachya bachya merged commit a082f31 into dev Jun 23, 2026
8 checks passed
@dependabot dependabot Bot deleted the dependabot/pip/pytest-aiohttp-1.1.1 branch June 23, 2026 06:10
@github-actions github-actions Bot locked and limited conversation to collaborators Jun 24, 2026
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

dependencies Upgrade or downgrade of project dependencies python Pull requests that update Python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant