Skip to content

[flake8-pytest-style] Mark PT022 fixes as unsafe - #26440

Merged
ntBre merged 5 commits into
astral-sh:mainfrom
joshuavetos:main
Jul 29, 2026
Merged

[flake8-pytest-style] Mark PT022 fixes as unsafe#26440
ntBre merged 5 commits into
astral-sh:mainfrom
joshuavetos:main

Conversation

@joshuavetos

Copy link
Copy Markdown
Contributor

Summary

Changes the diagnostic fix applicability for rule PT022 (missing yield types / old-style yield fixtures) from a safe edit to an unsafe_edit.

Converting a yield to a return fundamentally alters execution flow, scope lifetimes, and teardown behavior. In certain contexts (e.g., when interacting with bindings like GDAL), this transformation can cause critical runtime failures such as segmentation faults. Forcing this to be an unsafe fix ensures that it will not be executed blindly during a standard --fix pass without explicit opt-in via --allow-unsafe-fixes.

Fixes #26332

Test Plan

Updated the companion snapshot test (PT022.snap) using insta to verify that the generated diagnostic now correctly appends the trailing note: note: This is an unsafe fix and may change runtime behavior. All relevant linter tests now pass cleanly.

@astral-sh-bot
astral-sh-bot Bot requested a review from ntBre June 28, 2026 15:18

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: c88539d3ca

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

@ntBre ntBre added the fixes Related to suggested fixes for violations label Jul 29, 2026
@ntBre ntBre changed the title flake8-pytest-style: Mark PT022 fixes as unsafe [flake8-pytest-style] Mark PT022 fixes as unsafe Jul 29, 2026

@ntBre ntBre left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks! I resolved the merge conflicts and added a fix safety section to the docs.

@astral-sh-bot

astral-sh-bot Bot commented Jul 29, 2026

Copy link
Copy Markdown

ruff-ecosystem results

Linter (stable)

✅ ecosystem check detected no linter changes.

Linter (preview)

✅ ecosystem check detected no linter changes.

@ntBre
ntBre merged commit 64bc5a9 into astral-sh:main Jul 29, 2026
47 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

fixes Related to suggested fixes for violations

Projects

None yet

Development

Successfully merging this pull request may close these issues.

PT022 gives a false positive with GDAL code

2 participants