Bump pytest-aiohttp from 1.0.4 to 1.0.5
Type: Pull Request
State: Closed
Association: Contributor
Comments: 0
(about 1 year ago)
(about 1 year ago)
(about 1 year ago)
dependencies python
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-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)
Changelog
Sourced from pytest-aiohttp's changelog.
1.0.5 (2023-09-06)
- Fix some compatibility with Pytest 7.
Commits
74b6fafRelease 1.0.521112c0[pre-commit.ci] pre-commit autoupdate (#51)e8c8cfd[pre-commit.ci] pre-commit autoupdate (#45)49d9b35Add CodeQL workflow for GitHub code scanning (#46)a6a2533Usepytest.hookimplinpytest_configure(#49)9aea81eUpdate 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 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 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)
Pull Request Statistics
1
2
+12
-12
Package Dependencies
Technical Details
| ID: | 891467 |
| UUID: | 2569491951 |
| Node ID: | PR_kwDOAVZQxs6ZJ1Xv |
| Host: | GitHub |
| Repository: | auth0/auth0-python |
| Mergeable: | Yes |
| Merge State: | Unstable |