postlund / pyatv

A client library for Apple TV and AirPlay devices
https://pyatv.dev
MIT License
839 stars 91 forks source link

build(deps): Bump pytest-aiohttp from 1.0.4 to 1.0.5 in /requirements #2173

Closed dependabot[bot] closed 9 months ago

dependabot[bot] commented 9 months ago

Bumps pytest-aiohttp from 1.0.4 to 1.0.5.

Release notes

Sourced from pytest-aiohttp's releases.

pytest-aiohttp v1.0.5

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.0.5 (2023-09-06)

  • Fix some compatibility with Pytest 7.
Commits
  • 74b6faf Release 1.0.5
  • 21112c0 [pre-commit.ci] pre-commit autoupdate (#51)
  • e8c8cfd [pre-commit.ci] pre-commit autoupdate (#45)
  • 49d9b35 Add CodeQL workflow for GitHub code scanning (#46)
  • a6a2533 Use pytest.hookimpl in pytest_configure (#49)
  • 9aea81e Update check-jsonschema URL and version (#48)
  • a2c68a8 [pre-commit.ci] pre-commit autoupdate (#44)
  • 74afa87 [pre-commit.ci] pre-commit autoupdate (#42)
  • fca6a97 [pre-commit.ci] pre-commit autoupdate (#41)
  • a4218fa [pre-commit.ci] pre-commit autoupdate (#39)
  • Additional commits viewable in compare view


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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show 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)

codecov[bot] commented 9 months ago

Codecov Report

Patch coverage has no change and project coverage change: +0.03% :tada:

Comparison is base (74d2de5) 88.92% compared to head (a0499f6) 88.95%.

Additional details and impacted files ```diff @@ Coverage Diff @@ ## master #2173 +/- ## ========================================== + Coverage 88.92% 88.95% +0.03% ========================================== Files 167 167 Lines 11339 11339 ========================================== + Hits 10083 10087 +4 + Misses 1256 1252 -4 ``` [see 1 file with indirect coverage changes](https://app.codecov.io/gh/postlund/pyatv/pull/2173/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=Pierre+St%C3%A5hl)

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.