← Back to issue list

build(deps): update dependency pytest-check to v2.5.3 (main)

View original Github issue

Metadata

Project
craft-archives
Number
#177
Type
pull request
State
closed
Author
renovate[bot]
Labels
Created
Updated
Closed

Current evaluation

Closed without merging due to failing minimum dependencies CI check. The pytest-check update to v2.5.3 was abandoned, and Renovate will ignore this version until a newer release is available.

Suggested action:

No scores available.

Issue body

This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [pytest-check](https://redirect.github.com/okken/pytest-check) | `==2.2.1` -> `==2.5.3` | [![age](https://developer.mend.io/api/mc/badges/age/pypi/pytest-check/2.5.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/pytest-check/2.2.1/2.5.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>okken/pytest-check (pytest-check)</summary> ### [`v2.5.3`](https://redirect.github.com/okken/pytest-check/blob/HEAD/changelog.md#253---2025-Apr-3) [Compare Source](https://redirect.github.com/okken/pytest-check/compare/2.5.2...2.5.3) ##### Changed - relative paths in tracebacks - pr [#&#8203;179](https://redirect.github.com/okken/pytest-check/issues/179), thanks [@&#8203;dpinol](https://redirect.github.com/dpinol) - add testing of Python 3.14 ### [`v2.5.2`](https://redirect.github.com/okken/pytest-check/blob/HEAD/changelog.md#252---2025-Mar-29) [Compare Source](https://redirect.github.com/okken/pytest-check/compare/2.5.1...2.5.2) ##### Fixed - Fixes a weird corner case where an internal error could be generated by (1) having a session scope fixture fail in teardown and (2) having the last test in the session be skipped. Thanks [@&#8203;asyash26](https://redirect.github.com/asyash26) for reporting and creating reproduction steps. Resolves [#&#8203;170](https://redirect.github.com/okken/pytest-check/issues/170) ### [`v2.5.1`](https://redirect.github.com/okken/pytest-check/blob/HEAD/changelog.md#251---2025-Mar-18) [Compare Source](https://redirect.github.com/okken/pytest-check/compare/2.5.0...2.5.1) ##### Fixed - Set a minimum pluggy version during type checking. Resolves [#&#8203;176](https://redirect.github.com/okken/pytest-check/issues/176), thanks [@&#8203;d-ryzhykau](https://redirect.github.com/d-ryzhykau) ### [`v2.5.0`](https://redirect.github.com/okken/pytest-check/blob/HEAD/changelog.md#250---2025-Feb-12) [Compare Source](https://redirect.github.com/okken/pytest-check/compare/2.4.2...2.5.0) ##### Changed/Added - Add type hints, remove support for Python 3.8, resolves [#&#8203;163](https://redirect.github.com/okken/pytest-check/issues/163), thanks [@&#8203;mfulgo](https://redirect.github.com/mfulgo) ##### Fixed - Fixes [#&#8203;171](https://redirect.github.com/okken/pytest-check/issues/171), check doesn't respect runxfail option, thanks [@&#8203;taylermulligan](https://redirect.github.com/taylermulligan) ### [`v2.4.2`](https://redirect.github.com/okken/pytest-check/blob/HEAD/changelog.md#242---2025-Feb-8) [Compare Source](https://redirect.github.com/okken/pytest-check/compare/2.4.1...2.4.2) ##### Modified - Add testing for Python 3.13 to GH actions - Add testing for Python 3.13 and 3.14 to tox.ini - Switch packackaching from flit to hatchling ### [`v2.4.1`](https://redirect.github.com/okken/pytest-check/blob/HEAD/changelog.md#241---2024-Aug-27) [Compare Source](https://redirect.github.com/okken/pytest-check/compare/2.4.0...2.4.1) ##### Added - `is_nan()` - `is_not_nan()` ### [`v2.4.0`](https://redirect.github.com/okken/pytest-check/blob/HEAD/changelog.md#240---2024-Aug-27) [Compare Source](https://redirect.github.com/okken/pytest-check/compare/2.3.1...2.4.0) ##### Modified - Drop Python 3.7 - Add testing for Python 3.12 - Add tox-uv to tox.ini and main.yml ### [`v2.3.1`](https://redirect.github.com/okken/pytest-check/blob/HEAD/changelog.md#231---2024-Jan-18) [Compare Source](https://redirect.github.com/okken/pytest-check/compare/2.3.0...2.3.1) ##### Modified - Documentation Update, README.md - Turn help function list into a table with param lists - Show an alternative method of creating a helper function using `check.fail()` ### [`v2.3.0`](https://redirect.github.com/okken/pytest-check/blob/HEAD/changelog.md#230---2024-Jan-17) [Compare Source](https://redirect.github.com/okken/pytest-check/compare/2.2.5...2.3.0) ##### Added - `between_equal(b, a c)` - as a shortcut for `between(b, a, c, ge=True, le=True)` - `fail(msg)` - indicate test failure, but don't stop testing ### [`v2.2.5`](https://redirect.github.com/okken/pytest-check/blob/HEAD/changelog.md#225---2024-Jan-17) [Compare Source](https://redirect.github.com/okken/pytest-check/compare/2.2.4...2.2.5) - fix [155](https://redirect.github.com/okken/pytest-check/issues/155) - Summaries from 2.2.3 are cool, but don't work with xdist - Turn off summaries while xdist is running - I hope I'm not seeing a pattern here ### [`v2.2.4`](https://redirect.github.com/okken/pytest-check/blob/HEAD/changelog.md#224---2024-Jan-8) [Compare Source](https://redirect.github.com/okken/pytest-check/compare/2.2.3...2.2.4) - fix [153](https://redirect.github.com/okken/pytest-check/issues/153) - Summaries from 2.2.3 are cool, but don't work for pytest < 7.3 - Remove them for earlier pytest - Add tox test run for pytest 7.0.0 - Change dependencies to require 7.0.0 pytest ### [`v2.2.3`](https://redirect.github.com/okken/pytest-check/blob/HEAD/changelog.md#223---2023-Dec-31) [Compare Source](https://redirect.github.com/okken/pytest-check/compare/2.2.2...2.2.3) - Check failure info now shows up in summaries. - fix [133](https://redirect.github.com/okken/pytest-check/issues/133) - thanks [hirotoKirimaru](https://redirect.github.com/hirotoKirimaru) ### [`v2.2.2`](https://redirect.github.com/okken/pytest-check/blob/HEAD/changelog.md#222---2023-Sept-22) [Compare Source](https://redirect.github.com/okken/pytest-check/compare/2.2.1...2.2.2) ##### fixed - Fix [137](https://redirect.github.com/okken/pytest-check/issues/137) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "every weekend" in timezone Etc/UTC, Automerge - At any time (no schedule defined). 🚦 **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 was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/canonical/craft-archives). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNy4yIiwidXBkYXRlZEluVmVyIjoiNDEuMTcuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->

Evaluation history

Date Model Scores Action Summary
qwen/qwen3.6-35b-a3b Closed without merging due to failing minimum dependencies CI check. The pytest-check update to v2.5.3 was abandoned, and Renovate will ignore this version until a newer release is available.
qwen3.6-35b-a3b-mtp-q6 Closed without merging. The pytest-check update to v2.5.3 was rejected, and Renovate will ignore this specific version. Future dependency updates will trigger new pull requests.

Update history

No update history recorded yet.

Related issues

Issue Project State Summary Similarity
#178 build(deps): update dependency pytest-mock to v3.14.1 (main) craft-archives closed Abandoned without merging. This dependency update for pytest-mock from 3.11.1 to 3.14.1 was manually closed, causing Renovate to ignore it. One CI check for minimum dependencies failed.
88%
#1948 build(deps): update dependency pytest-check to v2.4.1 (main) - autoclosed charmcraft merged Merged automated dependency update for pytest-check from v2.3.1 to v2.4.1. Generated by Renovate, the change passed CI checks, received two approvals, and was successfully merged into the main branch.
86%
#1150 build(deps): update dependency pytest-check to v2.9.1 (main) craft-application merged Merged into main. Updated pytest-check from v2.8.0 to v2.9.1 to resolve a pytest-reportlog compatibility issue. Generated by Renovate, approved by two reviewers, and passed CI checks before integration.
85%
#169 build(deps): update dependency pytest to v8 (main) craft-archives closed Updating pytest to v8 was closed without merging due to a failing minimum dependencies CI check. Renovate will now ignore all future 8.x updates for this repository.
85%
#1053 build(deps): update dependency pytest-check to v2.8.0 (main) craft-application merged Merged automated dependency update for pytest-check from v2.7.6 to v2.8.0 on main. The Renovate-generated change was approved by two reviewers and passed all CI checks before merging.
85%
#2812 build(deps): update dependency pytest-time to v0.5.0 (main) charmcraft closed Closed without merging. The maintainer manually closed the pytest-time v0.5.0 update to address issues elsewhere, causing Renovate to ignore this version. CI checks included failing slow tests and lint errors.
84%
#1947 build(deps): update dependency pylint to v3.3.1 (main) charmcraft closed Closed without merging. The pylint dependency update to v3.3.1 was abandoned, causing Renovate to ignore this specific version and await a newer release.
80%
#827 build(deps): update dependency pytest-check to v2.5.3 (main) craft-application merged Merged automated dependency update for pytest-check from v2.4.1 to v2.5.3. All CI checks passed, and the change was approved by three reviewers before integration into the main branch.
79%
#779 build(deps): update dependency mypy to v1.16.1 (main) craft-application closed Closed without merging. The mypy update to v1.16.1 was abandoned despite passing CI checks. Renovate will ignore this version and wait for a newer release to generate a replacement PR.
78%
#2286 build(deps): update dependency python to 3.13 (main) charmcraft closed Closed without merging due to failing CI checks. Renovate will ignore this Python 3.13 update and generate a replacement PR when a newer version is released. The update was abandoned.
78%