chore(deps): update dependency pytest to v7.4.0 - autoclosed
Metadata
Current evaluation
Automated dependency update for pytest to v7.4.0 was autoclosed without merging. The pull request was abandoned, likely superseded by newer updates or intentionally ignored by maintainers.
Suggested action: —
No scores available.
Issue body
[](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [pytest](https://docs.pytest.org/en/latest/) ([source](https://togithub.com/pytest-dev/pytest), [changelog](https://docs.pytest.org/en/stable/changelog.html)) | `==7.3.1` -> `==7.4.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) |
---
### Release Notes
<details>
<summary>pytest-dev/pytest (pytest)</summary>
### [`v7.4.0`](https://togithub.com/pytest-dev/pytest/releases/tag/7.4.0)
[Compare Source](https://togithub.com/pytest-dev/pytest/compare/7.3.2...7.4.0)
# pytest 7.4.0 (2023-06-23)
## Features
- [#​10901](https://togithub.com/pytest-dev/pytest/issues/10901): Added `ExceptionInfo.from_exception() <pytest.ExceptionInfo.from_exception>`{.interpreted-text role="func"}, a simpler way to create an `~pytest.ExceptionInfo`{.interpreted-text role="class"} from an exception.
This can replace `ExceptionInfo.from_exc_info() <pytest.ExceptionInfo.from_exc_info()>`{.interpreted-text role="func"} for most uses.
## Improvements
- [#​10872](https://togithub.com/pytest-dev/pytest/issues/10872): Update test log report annotation to named tuple and fixed inconsistency in docs for `pytest_report_teststatus`{.interpreted-text role="hook"} hook.
- [#​10907](https://togithub.com/pytest-dev/pytest/issues/10907): When an exception traceback to be displayed is completely filtered out (by mechanisms such as `__tracebackhide__`, internal frames, and similar), now only the exception string and the following message are shown:
"All traceback entries are hidden. Pass \[--full-trace]{.title-ref} to see hidden and internal frames.".
Previously, the last frame of the traceback was shown, even though it was hidden.
- [#​10940](https://togithub.com/pytest-dev/pytest/issues/10940): Improved verbose output (`-vv`) of `skip` and `xfail` reasons by performing text wrapping while leaving a clear margin for progress output.
Added `TerminalReporter.wrap_write()` as a helper for that.
- [#​10991](https://togithub.com/pytest-dev/pytest/issues/10991): Added handling of `%f` directive to print microseconds in log format options, such as `log-date-format`.
- [#​11005](https://togithub.com/pytest-dev/pytest/issues/11005): Added the underlying exception to the cache provider's path creation and write warning messages.
- [#​11013](https://togithub.com/pytest-dev/pytest/issues/11013): Added warning when `testpaths`{.interpreted-text role="confval"} is set, but paths are not found by glob. In this case, pytest will fall back to searching from the current directory.
- [#​11043](https://togithub.com/pytest-dev/pytest/issues/11043): When \[--confcutdir]{.title-ref} is not specified, and there is no config file present, the conftest cutoff directory (\[--confcutdir]{.title-ref}) is now set to the `rootdir <rootdir>`{.interpreted-text role="ref"}.
Previously in such cases, \[conftest.py]{.title-ref} files would be probed all the way to the root directory of the filesystem.
If you are badly affected by this change, consider adding an empty config file to your desired cutoff directory, or explicitly set \[--confcutdir]{.title-ref}.
- [#​11081](https://togithub.com/pytest-dev/pytest/issues/11081): The `norecursedirs`{.interpreted-text role="confval"} check is now performed in a `pytest_ignore_collect`{.interpreted-text role="hook"} implementation, so plugins can affect it.
If after updating to this version you see that your \[norecursedirs]{.title-ref} setting is not being respected,
it means that a conftest or a plugin you use has a bad \[pytest_ignore_collect]{.title-ref} implementation.
Most likely, your hook returns \[False]{.title-ref} for paths it does not want to ignore,
which ends the processing and doesn't allow other plugins, including pytest itself, to ignore the path.
The fix is to return \[None]{.title-ref} instead of \[False]{.title-ref} for paths your hook doesn't want to ignore.
- [#​8711](https://togithub.com/pytest-dev/pytest/issues/8711): `caplog.set_level() <pytest.LogCaptureFixture.set_level>`{.interpreted-text role="func"} and `caplog.at_level() <pytest.LogCaptureFixture.at_level>`{.interpreted-text role="func"}
will temporarily enable the requested `level` if `level` was disabled globally via
`logging.disable(LEVEL)`.
## Bug Fixes
- [#​10831](https://togithub.com/pytest-dev/pytest/issues/10831): Terminal Reporting: Fixed bug when running in `--tb=line` mode where `pytest.fail(pytrace=False)` tests report `None`.
- [#​11068](https://togithub.com/pytest-dev/pytest/issues/11068): Fixed the `--last-failed` whole-file skipping functionality ("skipped N files") for `non-python test files <non-python tests>`{.interpreted-text role="ref"}.
- [#​11104](https://togithub.com/pytest-dev/pytest/issues/11104): Fixed a regression in pytest 7.3.2 which caused to `testpaths`{.interpreted-text role="confval"} to be considered for loading initial conftests,
even when it was not utilized (e.g. when explicit paths were given on the command line).
Now the `testpaths` are only considered when they are in use.
- [#​1904](https://togithub.com/pytest-dev/pytest/issues/1904): Fixed traceback entries hidden with `__tracebackhide__ = True` still being shown for chained exceptions (parts after "... the above exception ..." message).
- [#​7781](https://togithub.com/pytest-dev/pytest/issues/7781): Fix writing non-encodable text to log file when using `--debug`.
## Improved Documentation
- [#​9146](https://togithub.com/pytest-dev/pytest/issues/9146): Improved documentation for `caplog.set_level() <pytest.LogCaptureFixture.set_level>`{.interpreted-text role="func"}.
## Trivial/Internal Changes
- [#​11031](https://togithub.com/pytest-dev/pytest/issues/11031): Enhanced the CLI flag for `-c` to now include `--config-file` to make it clear that this flag applies to the usage of a custom config file.
### [`v7.3.2`](https://togithub.com/pytest-dev/pytest/releases/tag/7.3.2)
[Compare Source](https://togithub.com/pytest-dev/pytest/compare/7.3.1...7.3.2)
# pytest 7.3.2 (2023-06-10)
## Bug Fixes
- [#​10169](https://togithub.com/pytest-dev/pytest/issues/10169): Fix bug where very long option names could cause pytest to break with `OSError: [Errno 36] File name too long` on some systems.
- [#​10894](https://togithub.com/pytest-dev/pytest/issues/10894): Support for Python 3.12 (beta at the time of writing).
- [#​10987](https://togithub.com/pytest-dev/pytest/issues/10987): `testpaths`{.interpreted-text role="confval"} is now honored to load root `conftests`.
- [#​10999](https://togithub.com/pytest-dev/pytest/issues/10999): The \[monkeypatch]{.title-ref} \[setitem]{.title-ref}/\[delitem]{.title-ref} type annotations now allow \[TypedDict]{.title-ref} arguments.
- [#​11028](https://togithub.com/pytest-dev/pytest/issues/11028): Fixed bug in assertion rewriting where a variable assigned with the walrus operator could not be used later in a function call.
- [#​11054](https://togithub.com/pytest-dev/pytest/issues/11054): Fixed `--last-failed`'s "(skipped N files)" functionality for files inside of packages (directories with \[\__init\_\_.py]{.title-ref} files).
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "every weekend" in timezone Etc/UTC, Automerge - "before 07:00" in timezone Etc/UTC.
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/canonical/charmcraft).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi44LjExIiwidXBkYXRlZEluVmVyIjoiMzYuOC4xMSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->
Evaluation history
| Date | Model | Scores | Action | Summary |
|---|---|---|---|---|
| qwen/qwen3.6-35b-a3b | — | — | Automated dependency update for pytest to v7.4.0 was autoclosed without merging. The pull request was abandoned, likely superseded by newer updates or intentionally ignored by maintainers. | |
| qwen3.6-35b-a3b-mtp-q6 | — | — | Renovate PR updating pytest to v7.4.0 was autoclosed without merging. Automerge was disabled, and the update was abandoned due to lack of manual approval and activity. | |
| qwen3.6-35b-a3b-mtp-q6 | — | — | Automatically closed by Renovate bot without merging. The pytest dependency update to v7.4.0 was abandoned or superseded by another change. |
Update history
No update history recorded yet.
Related issues
| Issue | Project | State | Summary | Similarity |
|---|---|---|---|---|
| #18 chore(deps): update dependency pytest to v7.2.1 | starbase | merged | Upgraded pytest dependency from v7.0.0 to v7.2.1. The automated pull request passed CI checks, received reviewer approval, and was successfully merged. | |
| #4729 chore(deps): update dependency pytest to v8 - abandoned | snapcraft | closed | Updating pytest to v8 was abandoned after a maintainer reported breaking compatibility with testtools causing test failures. The branch was modified and the request was closed without merging. | |
| #9 chore(deps): update dependency pytest to v7.2.1 | craft-archives | merged | Merged a Renovate-generated dependency update upgrading pytest from v7.0.0 to v7.2.1. The change passed CI checks, received reviewer approval, and was successfully merged into the codebase. | |
| #64 chore(deps): update dependency pytest to v7.3.1 | craft-archives | merged | Dependency update for pytest to v7.3.1 via Renovate bot. The pull request received approval, passed all CI checks, and was successfully merged into the main branch. | |
| #59 chore(deps): update dependency dev/pytest to v7.3.1 | starbase | merged | Automated dependency update for dev/pytest from v7.2.2 to v7.3.1 was approved, passed CI checks, and successfully merged into the main branch. | |
| #1174 chore(deps): update dependency pytest-cov to v4.1.0 - autoclosed | charmcraft | closed | Automated dependency update for pytest-cov to v4.1.0 was autoclosed by Renovate due to inactivity. No reviews or CI checks ran, and the change was abandoned without merging. | |
| #1175 chore(deps): update dependency pytest-mock to v3.11.1 - autoclosed | charmcraft | closed | Dependency update for pytest-mock to v3.11.1 was autoclosed due to inactivity. The branch was abandoned without review or merging. | |
| #547 chore(deps): update dependency pytest to v8.1.1 | rockcraft | merged | Merged automated dependency update upgrading pytest from v8.0.0 to v8.1.1. The change passed CI checks, received two approvals, and was successfully integrated into the main branch. | |
| #191 chore(deps): update development dependencies (non-major) - autoclosed | craft-store | closed | Automated dependency updates for pytest, black, mypy, and pyright were autoclosed without merging. Renovate configured the PR as immortal, ensuring it will be automatically regenerated and resubmitted later. | |
| #169 chore(deps): update dependency dev/pytest to v8 | craft-store | merged | Merged automated dependency update upgrading pytest from 7.4.4 to 8.1.1. Approved by two reviewers, passed CI, and modified one file. The update applies pytest 8.x features and bug fixes to the project. |