Skip to content

Bump pytest from 8.4.1 to 9.0.2#17

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/pip/pytest-9.0.2
Closed

Bump pytest from 8.4.1 to 9.0.2#17
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/pip/pytest-9.0.2

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 14, 2026

Bumps pytest from 8.4.1 to 9.0.2.

Release notes

Sourced from pytest's releases.

9.0.2

pytest 9.0.2 (2025-12-06)

Bug fixes

  • #13896: The terminal progress feature added in pytest 9.0.0 has been disabled by default, except on Windows, due to compatibility issues with some terminal emulators.

    You may enable it again by passing -p terminalprogress. We may enable it by default again once compatibility improves in the future.

    Additionally, when the environment variable TERM is dumb, the escape codes are no longer emitted, even if the plugin is enabled.

  • #13904: Fixed the TOML type of the tmp_path_retention_count settings in the API reference from number to string.

  • #13946: The private config.inicfg attribute was changed in a breaking manner in pytest 9.0.0. Due to its usage in the ecosystem, it is now restored to working order using a compatibility shim. It will be deprecated in pytest 9.1 and removed in pytest 10.

  • #13965: Fixed quadratic-time behavior when handling unittest subtests in Python 3.10.

Improved documentation

  • #4492: The API Reference now contains cross-reference-able documentation of pytest's command-line flags <command-line-flags>.

9.0.1

pytest 9.0.1 (2025-11-12)

Bug fixes

  • #13895: Restore support for skipping tests via raise unittest.SkipTest.
  • #13896: The terminal progress plugin added in pytest 9.0 is now automatically disabled when iTerm2 is detected, it generated desktop notifications instead of the desired functionality.
  • #13904: Fixed the TOML type of the verbosity settings in the API reference from number to string.
  • #13910: Fixed UserWarning: Do not expect file_or_dir on some earlier Python 3.12 and 3.13 point versions.

Packaging updates and notes for downstreams

  • #13933: The tox configuration has been adjusted to make sure the desired version string can be passed into its package_env through the SETUPTOOLS_SCM_PRETEND_VERSION_FOR_PYTEST environment variable as a part of the release process -- by webknjaz.

Contributor-facing changes

  • #13891, #13942: The CI/CD part of the release automation is now capable of creating GitHub Releases without having a Git checkout on disk -- by bluetech and webknjaz.
  • #13933: The tox configuration has been adjusted to make sure the desired version string can be passed into its package_env through the SETUPTOOLS_SCM_PRETEND_VERSION_FOR_PYTEST environment variable as a part of the release process -- by webknjaz.

... (truncated)

Commits
  • 3d10b51 Prepare release version 9.0.2
  • 188750b Merge pull request #14030 from pytest-dev/patchback/backports/9.0.x/1e4b01d1f...
  • b7d7bef Merge pull request #14014 from bluetech/compat-note
  • bd08e85 Merge pull request #14013 from pytest-dev/patchback/backports/9.0.x/922b60377...
  • bc78386 Add CLI options reference documentation (#13930)
  • 5a4e398 Fix docs typo (#14005) (#14008)
  • d7ae6df Merge pull request #14006 from pytest-dev/maintenance/update-plugin-list-tmpl...
  • 556f6a2 pre-commit: fix rst-lint after new release (#13999) (#14001)
  • c60fbe6 Fix quadratic-time behavior when handling unittest subtests in Python 3.10 ...
  • 73d9b01 Merge pull request #13995 from nicoddemus/patchback/backports/9.0.x/1b5200c0f...
  • 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)

Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.4.1 to 9.0.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@8.4.1...9.0.2)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Jan 14, 2026
@dependabot dependabot bot requested a review from a team as a code owner January 14, 2026 00:54
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Jan 14, 2026
@github-actions
Copy link

🤖 Claude Code Review

Code Review: pytest Dependency Bump (8.4.1 → 9.0.2)

Summary

This PR updates pytest from version 8.4.1 to 9.0.2 in development-requirements.txt. This is a dependency maintenance update.


Review Results

✅ Code Quality

  • ✅ Code follows style guide: This is a straightforward dependency version update in a requirements file. No custom code is involved.
  • ✅ No commented-out code: None present.
  • ✅ Meaningful variable names: N/A - no code changes.
  • ✅ DRY principle followed: N/A - no code changes.
  • ✅ Identify Defects: No bugs or security vulnerabilities introduced. This is a minor/major version bump of a development dependency that should be backward compatible.
  • ✅ Project memory configuration: No .claude/CLAUDE.md file exists in this repository, so no project-specific considerations.

⚠️ Testing

  • ❌ Unit tests for new functions: N/A - no new functions added.
  • ❌ Integration tests for new endpoints: N/A - no new endpoints.
  • ❌ Edge cases covered: N/A - dependency update only.
  • ⚠️ Test coverage > 80%: Action Required - The tests should be run to ensure pytest 9.0.2 doesn't break existing test functionality. Pytest 9.x is a major version bump from 8.x and may have breaking changes.

Recommendation: Run the test suite with pytest to verify compatibility: pytest --cov

⚠️ Documentation

  • ✅ Readme updated if needed: README.md doesn't reference specific pytest versions, so no update needed.
  • ✅ API docs updated: N/A - no API changes.
  • ✅ Inline comments for complex logic: N/A - no code changes.
  • ❌ CHANGELOG.md updated: /home/runner/work/mapper-spire/mapper-spire/CHANGELOG.md:8 - The CHANGELOG.md has an [Unreleased] section but does not include this pytest version bump. For transparency and maintenance tracking, dependency updates should be documented.

Recommendation: Add an entry under [Unreleased]:

### Changed in Unreleased
- Bumped pytest from 8.4.1 to 9.0.2
  • ✅ Markdown files formatted: The diff doesn't modify any markdown files.

✅ Security

  • ✅ No hardcoded credentials: None present.
  • ✅ Input validation implemented: N/A - no input handling code.
  • ✅ Proper error handling: N/A - no error handling code.
  • ✅ No sensitive data in logs: N/A - no logging code.
  • ✅ No license files (.lic) or AQAAAD strings: None detected in diff.

Critical Issues

None.

Required Actions

  1. CHANGELOG.md update: Document the pytest version bump in the changelog.
  2. Test verification: Run the full test suite to ensure pytest 9.0.2 compatibility (pytest 9.x may have breaking changes from 8.x).

Optional Recommendations

  • Review pytest 9.0.2 release notes to understand any breaking changes or deprecations that might affect this project.

Automated code review analyzing defects and coding standards

@docktermj docktermj self-assigned this Jan 14, 2026
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 14, 2026

Looks like pytest is up-to-date now, so this is no longer needed.

@dependabot dependabot bot closed this Jan 14, 2026
@dependabot dependabot bot deleted the dependabot/pip/pytest-9.0.2 branch January 14, 2026 15:49
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 python Pull requests that update python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant