Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python: Bump pytest from 7.4.0 to 7.4.2 in /python #2789

Merged
merged 1 commit into from
Sep 15, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 11, 2023

Bumps pytest from 7.4.0 to 7.4.2.

Release notes

Sourced from pytest's releases.

pytest 7.4.2 (2023-09-07)

Bug Fixes

  • #11237: Fix doctest collection of functools.cached_property objects.

  • #11306: Fixed bug using --importmode=importlib which would cause package __init__.py files to be imported more than once in some cases.

  • #11367: Fixed bug where user_properties where not being saved in the JUnit XML file if a fixture failed during teardown.

  • #11394: Fixed crash when parsing long command line arguments that might be interpreted as files.

Improved Documentation

  • #11391: Improved disclaimer on pytest plugin reference page to better indicate this is an automated, non-curated listing.

pytest 7.4.1 (2023-09-02)

Bug Fixes

  • #10337: Fixed bug where fake intermediate modules generated by --import-mode=importlib would not include the child modules as attributes of the parent modules.

  • #10702: Fixed error assertion handling in pytest.approx when None is an expected or received value when comparing dictionaries.

  • #10811: Fixed issue when using --import-mode=importlib together with --doctest-modules that caused modules to be imported more than once, causing problems with modules that have import side effects.

Commits
  • 45f34df Prepare release version 7.4.2
  • e4f022f Merge pull request #11406 from nicoddemus/backport-11404-to-7.4.x
  • 63b0c6f Use _pytest.pathlib.safe_exists in get_dirs_from_args
  • 884b911 Fix crash when passing a very long cmdline argument (#11404)
  • 6e49a74 [7.4.x] Fix doctest collection of functools.cached_property objects. (#11403)
  • 79c2012 [7.4.x] doc: Remove done training (#11400)
  • de69883 [7.4.x] improve plugin list disclaimer (#11398)
  • 1de00e9 [7.4.x] Fix import_path for packages (#11395)
  • 7f5d9b9 Fix user_properties not saved to XML if fixture errors during teardown (#11382)
  • 82eb86f Merge pull request #11377 from pytest-dev/release-7.4.1
  • 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 <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)

@dependabot dependabot bot requested a review from a team as a code owner September 11, 2023 23:17
@dependabot dependabot bot added dependencies Pull requests that update a dependency file. Used by Dependabot. python Pull requests for the Python Semantic Kernel labels Sep 11, 2023
@github-actions github-actions bot changed the title Bump pytest from 7.4.0 to 7.4.2 in /python Python: Bump pytest from 7.4.0 to 7.4.2 in /python Sep 11, 2023
@lemillermicrosoft lemillermicrosoft added this to the R3: Cycle 3 milestone Sep 12, 2023
Bumps [pytest](https://github.com/pytest-dev/pytest) from 7.4.0 to 7.4.2.
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@7.4.0...7.4.2)

---
updated-dependencies:
- dependency-name: pytest
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/pip/python/pytest-7.4.2 branch from 52862f7 to dbdb547 Compare September 14, 2023 22:36
@shawncal shawncal added this pull request to the merge queue Sep 14, 2023
@github-merge-queue github-merge-queue bot removed this pull request from the merge queue due to failed status checks Sep 14, 2023
@shawncal shawncal added this pull request to the merge queue Sep 14, 2023
Merged via the queue into main with commit b87f44e Sep 15, 2023
26 checks passed
@shawncal shawncal deleted the dependabot/pip/python/pytest-7.4.2 branch September 15, 2023 00:04
SOE-YoungS pushed a commit to SOE-YoungS/semantic-kernel that referenced this pull request Nov 1, 2023
Bumps [pytest](https://github.com/pytest-dev/pytest) from 7.4.0 to
7.4.2.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/pytest-dev/pytest/releases">pytest's
releases</a>.</em></p>
<blockquote>
<h2>pytest 7.4.2 (2023-09-07)</h2>
<h1>Bug Fixes</h1>
<ul>
<li>
<p><a
href="https://redirect.github.com/pytest-dev/pytest/issues/11237">#11237</a>:
Fix doctest collection of <code>functools.cached_property</code>
objects.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/pytest-dev/pytest/issues/11306">#11306</a>:
Fixed bug using <code>--importmode=importlib</code> which would cause
package <code>__init__.py</code> files to be imported more than once in
some cases.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/pytest-dev/pytest/issues/11367">#11367</a>:
Fixed bug where <code>user_properties</code> where not being saved in
the JUnit XML file if a fixture failed during teardown.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/pytest-dev/pytest/issues/11394">#11394</a>:
Fixed crash when parsing long command line arguments that might be
interpreted as files.</p>
</li>
</ul>
<h1>Improved Documentation</h1>
<ul>
<li><a
href="https://redirect.github.com/pytest-dev/pytest/issues/11391">#11391</a>:
Improved disclaimer on pytest plugin reference page to better indicate
this is an automated, non-curated listing.</li>
</ul>
<h2>pytest 7.4.1 (2023-09-02)</h2>
<h2>Bug Fixes</h2>
<ul>
<li>
<p><a
href="https://redirect.github.com/pytest-dev/pytest/issues/10337">#10337</a>:
Fixed bug where fake intermediate modules generated by
<code>--import-mode=importlib</code> would not include the
child modules as attributes of the parent modules.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/pytest-dev/pytest/issues/10702">#10702</a>:
Fixed error assertion handling in <code>pytest.approx</code> when
<code>None</code> is an expected or received value when comparing
dictionaries.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/pytest-dev/pytest/issues/10811">#10811</a>:
Fixed issue when using <code>--import-mode=importlib</code> together
with <code>--doctest-modules</code> that caused modules
to be imported more than once, causing problems with modules that have
import side effects.</p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pytest-dev/pytest/commit/45f34dfb8d813b00c7d8060a3ea75f7b4bc5cd7d"><code>45f34df</code></a>
Prepare release version 7.4.2</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/e4f022f0d82bd530c3e4409c1c6a87e55ef9098d"><code>e4f022f</code></a>
Merge pull request <a
href="https://redirect.github.com/pytest-dev/pytest/issues/11406">#11406</a>
from nicoddemus/backport-11404-to-7.4.x</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/63b0c6f75f218b400a5a42305f9fa3830448f7e8"><code>63b0c6f</code></a>
Use _pytest.pathlib.safe_exists in get_dirs_from_args</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/884b911a9cbf3c97689b473ae7f732fc72e06eea"><code>884b911</code></a>
Fix crash when passing a very long cmdline argument (<a
href="https://redirect.github.com/pytest-dev/pytest/issues/11404">#11404</a>)</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/6e49a74089540196ae2b2bf8267a530ad9957f3e"><code>6e49a74</code></a>
[7.4.x] Fix doctest collection of <code>functools.cached_property</code>
objects. (<a
href="https://redirect.github.com/pytest-dev/pytest/issues/11403">#11403</a>)</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/79c2012d4090bbe0cd0910e1616dc19ca75aea86"><code>79c2012</code></a>
[7.4.x] doc: Remove done training (<a
href="https://redirect.github.com/pytest-dev/pytest/issues/11400">#11400</a>)</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/de69883e3a6a923c9eceb28cedf8e9660bd58a51"><code>de69883</code></a>
[7.4.x] improve plugin list disclaimer (<a
href="https://redirect.github.com/pytest-dev/pytest/issues/11398">#11398</a>)</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/1de00e9830c57805ec07a0d67095822703b90bb4"><code>1de00e9</code></a>
[7.4.x] Fix import_path for packages (<a
href="https://redirect.github.com/pytest-dev/pytest/issues/11395">#11395</a>)</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/7f5d9b9df4e5e323fe3a66aeb956557710e5d277"><code>7f5d9b9</code></a>
Fix user_properties not saved to XML if fixture errors during teardown
(<a
href="https://redirect.github.com/pytest-dev/pytest/issues/11382">#11382</a>)</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/82eb86f707cac79f33d0ff69723ccf1cea7e75f7"><code>82eb86f</code></a>
Merge pull request <a
href="https://redirect.github.com/pytest-dev/pytest/issues/11377">#11377</a>
from pytest-dev/release-7.4.1</li>
<li>Additional commits viewable in <a
href="https://github.com/pytest-dev/pytest/compare/7.4.0...7.4.2">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=pytest&package-manager=pip&previous-version=7.4.0&new-version=7.4.2)](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 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)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file. Used by Dependabot. python Pull requests for the Python Semantic Kernel
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

None yet

2 participants