Skip to content

Commit

Permalink
build(deps-dev): bump pytest-asyncio from 0.20.1 to 0.20.3 (#60)
Browse files Browse the repository at this point in the history
[//]: # (dependabot-start)
⚠️  **Dependabot is rebasing this PR** ⚠️ 

Rebasing might not happen immediately, so don't worry if this takes some
time.

Note: if you make any changes to this PR yourself, they will take
precedence over the rebase.

---

[//]: # (dependabot-end)

Bumps [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio)
from 0.20.1 to 0.20.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/pytest-dev/pytest-asyncio/releases">pytest-asyncio's
releases</a>.</em></p>
<blockquote>
<h2>pytest-asyncio 0.20.3</h2>
<hr />
<h2>title: 'pytest-asyncio'</h2>
<p><a href="https://pypi.python.org/pypi/pytest-asyncio"><img
src="https://img.shields.io/pypi/v/pytest-asyncio.svg" alt="image"
/></a></p>
<p><a
href="https://github.com/pytest-dev/pytest-asyncio/actions?workflow=CI"><img
src="https://github.com/pytest-dev/pytest-asyncio/workflows/CI/badge.svg"
alt="image" /></a></p>
<p><a href="https://codecov.io/gh/pytest-dev/pytest-asyncio"><img
src="https://codecov.io/gh/pytest-dev/pytest-asyncio/branch/master/graph/badge.svg"
alt="image" /></a></p>
<p><a href="https://github.com/pytest-dev/pytest-asyncio"><img
src="https://img.shields.io/pypi/pyversions/pytest-asyncio.svg"
alt="Supported Python versions" /></a></p>
<p><a href="https://github.com/ambv/black"><img
src="https://img.shields.io/badge/code%20style-black-000000.svg"
alt="image" /></a></p>
<p>pytest-asyncio is a
<a href="https://docs.pytest.org/en/latest/contents.html">pytest</a>
plugin. It
facilitates testing of code that uses the
<a href="https://docs.python.org/3/library/asyncio.html">asyncio</a>
library.</p>
<p>Specifically, pytest-asyncio provides support for coroutines as test
functions. This allows users to <em>await</em> code inside their tests.
For
example, the following code is executed as a test item by pytest:</p>
<pre lang="{.python}"><code>@pytest.mark.asyncio
async def test_some_asyncio_code():
    res = await library.do_something()
    assert b&quot;expected result&quot; == res
</code></pre>
<p>Note that test classes subclassing the standard
<a href="https://docs.python.org/3/library/unittest.html">unittest</a>
library are
not supported. Users are advised to use
<a
href="https://docs.python.org/3/library/unittest.html#unittest.IsolatedAsyncioTestCase">unittest.IsolatedAsyncioTestCase</a>
or an async framework such as
<a href="https://asynctest.readthedocs.io/en/latest">asynctest</a>.</p>
<p>pytest-asyncio is available under the <a
href="https://github.com/pytest-dev/pytest-asyncio/blob/master/LICENSE">Apache
License
2.0</a>.</p>
<h1>Installation</h1>
<p>To install pytest-asyncio, simply:</p>
<pre lang="{.bash}"><code>$ pip install pytest-asyncio
</code></pre>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pytest-dev/pytest-asyncio/blob/master/CHANGELOG.rst">pytest-asyncio's
changelog</a>.</em></p>
<blockquote>
<h1>0.20.3 (22-12-08)</h1>
<ul>
<li>Prevent DeprecationWarning to bubble up on CPython 3.10.9 and
3.11.1.
<code>[#460](pytest-dev/pytest-asyncio#460)
&lt;https://github.com/pytest-dev/pytest-asyncio/issues/460&gt;</code>_</li>
</ul>
<h1>0.20.2 (22-11-11)</h1>
<ul>
<li>Fixes an issue with async fixtures that are defined as methods on a
test class not being rebound to the actual test instance.
<code>[#197](pytest-dev/pytest-asyncio#197)
&lt;https://github.com/pytest-dev/pytest-asyncio/issues/197&gt;</code>_</li>
<li>Replaced usage of deprecated <code>@pytest.mark.tryfirst</code> with
<code>@pytest.hookimpl(tryfirst=True)</code>
<code>[#438](pytest-dev/pytest-asyncio#438)
&lt;https://github.com/pytest-dev/pytest-asyncio/pull/438&gt;</code>_</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pytest-dev/pytest-asyncio/commit/007e8ec12662ffd896c6151239dc7ed1402dc710"><code>007e8ec</code></a>
[fix] Prevent DeprecationWarning about existing event loops to bubble up
into...</li>
<li><a
href="https://github.com/pytest-dev/pytest-asyncio/commit/44ca3da2ad68ea672d07a76ccc065922e13b5d5b"><code>44ca3da</code></a>
Build(deps): Bump zipp from 3.10.0 to 3.11.0 in /dependencies/default
(<a
href="https://github-redirect.dependabot.com/pytest-dev/pytest-asyncio/issues/455">#455</a>)</li>
<li><a
href="https://github.com/pytest-dev/pytest-asyncio/commit/c3c601cfd9a59e52b555cfd8313d16dbc15fb704"><code>c3c601c</code></a>
Build(deps): Bump pypa/gh-action-pypi-publish from 1.5.1 to 1.5.2 (<a
href="https://github-redirect.dependabot.com/pytest-dev/pytest-asyncio/issues/456">#456</a>)</li>
<li><a
href="https://github.com/pytest-dev/pytest-asyncio/commit/a962e2bc89e1181de77e486b1d7cbd7815662350"><code>a962e2b</code></a>
Build(deps): Bump importlib-metadata in /dependencies/default (<a
href="https://github-redirect.dependabot.com/pytest-dev/pytest-asyncio/issues/454">#454</a>)</li>
<li><a
href="https://github.com/pytest-dev/pytest-asyncio/commit/56a393abec9b60d4e061b053dfdf8ce6985c8b6b"><code>56a393a</code></a>
Simplify README, move most content to a separate user documentation. (<a
href="https://github-redirect.dependabot.com/pytest-dev/pytest-asyncio/issues/448">#448</a>)</li>
<li><a
href="https://github.com/pytest-dev/pytest-asyncio/commit/3c78732497e02cfb4463fafd7c5b17bf1c88ce95"><code>3c78732</code></a>
Build(deps): Bump hypothesis in /dependencies/default (<a
href="https://github-redirect.dependabot.com/pytest-dev/pytest-asyncio/issues/453">#453</a>)</li>
<li><a
href="https://github.com/pytest-dev/pytest-asyncio/commit/d6a9a72ef1749a864e64ac6222a8d0da99e67de5"><code>d6a9a72</code></a>
Build(deps): Bump exceptiongroup in /dependencies/default (<a
href="https://github-redirect.dependabot.com/pytest-dev/pytest-asyncio/issues/451">#451</a>)</li>
<li><a
href="https://github.com/pytest-dev/pytest-asyncio/commit/42da7a0fea2b2bf0846dbbed5d1abcf56c7fa38b"><code>42da7a0</code></a>
Build(deps): Bump hypothesis in /dependencies/default (<a
href="https://github-redirect.dependabot.com/pytest-dev/pytest-asyncio/issues/450">#450</a>)</li>
<li><a
href="https://github.com/pytest-dev/pytest-asyncio/commit/0b281b1b76b93c29894519e0750a4f8634786741"><code>0b281b1</code></a>
Build(deps): Bump mypy from 0.990 to 0.991 in /dependencies/default (<a
href="https://github-redirect.dependabot.com/pytest-dev/pytest-asyncio/issues/446">#446</a>)</li>
<li><a
href="https://github.com/pytest-dev/pytest-asyncio/commit/d39589c0353657ee6d75d38db779cc4ecb2491c4"><code>d39589c</code></a>
Update pre-commit hooks (<a
href="https://github-redirect.dependabot.com/pytest-dev/pytest-asyncio/issues/449">#449</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/pytest-dev/pytest-asyncio/compare/v0.20.1...v0.20.3">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=pytest-asyncio&package-manager=pip&previous-version=0.20.1&new-version=0.20.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

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


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] committed Feb 1, 2023
1 parent b2179d5 commit e865d86
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -34,7 +34,7 @@ perflint = "^0.7.2"
poethepoet = "^0.16.4"
pyproject-flake8 = "^0.0.1-alpha.4"
pytest = "^7.0"
pytest-asyncio = "^0.20.1"
pytest-asyncio = "^0.20.3"
pytest-cov = "^3.0"
pytest-deadfixtures = "^2.1"
pytest-mock = "^3.10"
Expand Down

0 comments on commit e865d86

Please sign in to comment.