Commit f13afae
authored
Bump pytest-aiohttp from 1.1.0 to 1.1.1 (aio-libs#12877)
Bumps [pytest-aiohttp](https://github.com/aio-libs/pytest-aiohttp) from
1.1.0 to 1.1.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/aio-libs/pytest-aiohttp/releases">pytest-aiohttp's
releases</a>.</em></p>
<blockquote>
<h2>pytest-aiohttp v1.1.1</h2>
<h1>pytest-aiohttp</h1>
<p>pytest plugin for aiohttp support</p>
<p>The library provides useful fixtures for creation test aiohttp server
and client.</p>
<h2>Installation</h2>
<p>.. code-block:: console</p>
<pre><code>$ pip install pytest-aiohttp
</code></pre>
<p>Add <code>asyncio_mode = auto</code> line to <code>pytest
configuration
<https://docs.pytest.org/en/latest/customize.html></code>_ (see
<code>pytest-asyncio modes
<https://github.com/pytest-dev/pytest-asyncio#modes></code>_ for
details). The plugin works
with <code>strict</code> mode also.</p>
<h2>Usage</h2>
<p>Write tests in <code>pytest-asyncio
<https://github.com/pytest-dev/pytest-asyncio></code>_ style
using provided fixtures for aiohttp test server and client creation. The
plugin provides
resources cleanup out-of-the-box.</p>
<p>The simple usage example:</p>
<p>.. code-block:: python</p>
<pre><code>from aiohttp import web
<p>async def hello(request):<br />
return web.Response(body=b"Hello, world")</p>
<p>def create_app():<br />
app = web.Application()<br />
app.router.add_route("GET", "/", hello)<br />
return app</p>
<p>async def test_hello(aiohttp_client):<br />
client = await aiohttp_client(create_app())<br />
resp = await client.get("/")<br />
</code></pre></p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/aio-libs/pytest-aiohttp/blob/master/CHANGES.rst">pytest-aiohttp's
changelog</a>.</em></p>
<blockquote>
<h2>1.1.1 (2026-06-08)</h2>
<ul>
<li>
<p>Drop Python 3.9 (<a
href="https://redirect.github.com/aio-libs/pytest-aiohttp/issues/162">#162</a>)</p>
</li>
<li>
<p>Typing improvements (<a
href="https://redirect.github.com/aio-libs/pytest-aiohttp/issues/69">#69</a>,
<a
href="https://redirect.github.com/aio-libs/pytest-aiohttp/issues/162">#162</a>)</p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aio-libs/pytest-aiohttp/commit/52d99ef5a35bb238d99e3d625fdde6dcdc59ebba"><code>52d99ef</code></a>
Release v1.1.1 (<a
href="https://redirect.github.com/aio-libs/pytest-aiohttp/issues/164">#164</a>)</li>
<li><a
href="https://github.com/aio-libs/pytest-aiohttp/commit/31f276529436aa1a5202da6cc069562af603b179"><code>31f2765</code></a>
Bump pytest-asyncio from 1.3.0 to 1.4.0 (<a
href="https://redirect.github.com/aio-libs/pytest-aiohttp/issues/163">#163</a>)</li>
<li><a
href="https://github.com/aio-libs/pytest-aiohttp/commit/6dcf1350bc3711c354c42bf5a366418e49d22906"><code>6dcf135</code></a>
Bump pytest from 8.3.5 to 9.0.3 (<a
href="https://redirect.github.com/aio-libs/pytest-aiohttp/issues/145">#145</a>)</li>
<li><a
href="https://github.com/aio-libs/pytest-aiohttp/commit/a879de8bf1c0d83abe3a7585756011044dc3940e"><code>a879de8</code></a>
tests: add pytest.ini to set asyncio_default_fixture_loop_scope (<a
href="https://redirect.github.com/aio-libs/pytest-aiohttp/issues/115">#115</a>)</li>
<li><a
href="https://github.com/aio-libs/pytest-aiohttp/commit/65f08f031055b31b949298659d861241079d3175"><code>65f08f0</code></a>
Bump pytest-asyncio from 1.1.0 to 1.3.0 (<a
href="https://redirect.github.com/aio-libs/pytest-aiohttp/issues/158">#158</a>)</li>
<li><a
href="https://github.com/aio-libs/pytest-aiohttp/commit/aa166d8e936ff2050cd5b316ab7519e5dbf25e50"><code>aa166d8</code></a>
Bump aiohttp from 3.13.5 to 3.14.1 (<a
href="https://redirect.github.com/aio-libs/pytest-aiohttp/issues/160">#160</a>)</li>
<li><a
href="https://github.com/aio-libs/pytest-aiohttp/commit/786b3325c266c0bc067f9d243e5da23f46cd43a4"><code>786b332</code></a>
Update setuptools-scm requirement from >=6.2 to >=10.0.5 (<a
href="https://redirect.github.com/aio-libs/pytest-aiohttp/issues/147">#147</a>)</li>
<li><a
href="https://github.com/aio-libs/pytest-aiohttp/commit/31fbd7bb0e9ff3066d2bf5dc1d5ef1159dd0934e"><code>31fbd7b</code></a>
Bump actions/setup-python from 5 to 6 (<a
href="https://redirect.github.com/aio-libs/pytest-aiohttp/issues/117">#117</a>)</li>
<li><a
href="https://github.com/aio-libs/pytest-aiohttp/commit/01dfa797966ee9883e359536dfb9c2167d0bd83c"><code>01dfa79</code></a>
Drop Python 3.9 (<a
href="https://redirect.github.com/aio-libs/pytest-aiohttp/issues/162">#162</a>)</li>
<li><a
href="https://github.com/aio-libs/pytest-aiohttp/commit/ed3a446646c71bba4ac4322f4030ff4ee873cc3e"><code>ed3a446</code></a>
Bump actions/checkout from 6.0.2 to 6.0.3 (<a
href="https://redirect.github.com/aio-libs/pytest-aiohttp/issues/159">#159</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/aio-libs/pytest-aiohttp/compare/v1.1.0...v1.1.1">compare
view</a></li>
</ul>
</details>
<br />
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>1 parent 078119e commit f13afae
8 files changed
Lines changed: 8 additions & 8 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
212 | 212 | | |
213 | 213 | | |
214 | 214 | | |
215 | | - | |
| 215 | + | |
216 | 216 | | |
217 | 217 | | |
218 | 218 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
207 | 207 | | |
208 | 208 | | |
209 | 209 | | |
210 | | - | |
| 210 | + | |
211 | 211 | | |
212 | 212 | | |
213 | 213 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
115 | 115 | | |
116 | 116 | | |
117 | 117 | | |
118 | | - | |
| 118 | + | |
119 | 119 | | |
120 | 120 | | |
121 | 121 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
58 | 58 | | |
59 | 59 | | |
60 | 60 | | |
61 | | - | |
| 61 | + | |
62 | 62 | | |
63 | 63 | | |
64 | 64 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
100 | 100 | | |
101 | 101 | | |
102 | 102 | | |
103 | | - | |
| 103 | + | |
104 | 104 | | |
105 | 105 | | |
106 | 106 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
123 | 123 | | |
124 | 124 | | |
125 | 125 | | |
126 | | - | |
| 126 | + | |
127 | 127 | | |
128 | 128 | | |
129 | 129 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
89 | 89 | | |
90 | 90 | | |
91 | 91 | | |
92 | | - | |
| 92 | + | |
93 | 93 | | |
94 | 94 | | |
95 | 95 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
123 | 123 | | |
124 | 124 | | |
125 | 125 | | |
126 | | - | |
| 126 | + | |
127 | 127 | | |
128 | 128 | | |
129 | 129 | | |
| |||
0 commit comments