fix #13564 - warn when fixtures get wrapped with a decorator#13745
Open
RonnyPfannschmidt wants to merge 4 commits into
Open
fix #13564 - warn when fixtures get wrapped with a decorator#13745RonnyPfannschmidt wants to merge 4 commits into
RonnyPfannschmidt wants to merge 4 commits into
Conversation
RonnyPfannschmidt
commented
Sep 22, 2025
Member
- closes Fixture definition check in parsefactories is too strict #13564
c879256 to
9e7e132
Compare
b79b0ed to
59a31ca
Compare
There was a problem hiding this comment.
Pull Request Overview
This PR adds a warning mechanism to detect when pytest fixtures are wrapped with custom decorators, which prevents pytest from discovering them during collection. The warning helps developers understand why their fixtures might not be working as expected.
Key Changes:
- Added a warning system that detects fixtures wrapped in decorators using
functools.wraps - Implemented safe wrapper chain traversal with loop detection and special object handling
- Added comprehensive test coverage for the new warning functionality
Reviewed Changes
Copilot reviewed 3 out of 4 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
src/_pytest/fixtures.py |
Implements the core detection logic for wrapped fixtures and issues warnings when found |
testing/python/fixtures.py |
Adds test case to verify the warning is correctly issued for decorated fixtures |
changelog/13564.improvement.rst |
Documents the new warning feature for wrapped fixtures |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
f6e8414 to
2510a6a
Compare
Refactor the wrapped fixture detection logic to safely handle: - Mock objects (which have _mock_name attribute) - Proxy objects with problematic __class__ properties - Wrapper loops (like in mock.call) - Objects that raise exceptions during isinstance checks The new _find_wrapped_fixture_def() method walks the wrapper chain more safely and avoids infinite loops and errors from special objects. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Prevent OOM crash when encountering objects with self-referential __wrapped__ attributes. The loop detection logic now checks object IDs at the start of each iteration and includes a maximum depth limit as an additional safeguard. The original code had a timing issue where it checked id(wrapped) against seen after fetching __wrapped__ but before updating current, which failed to detect self-referential objects properly. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
- Clarify mock object skip comment to explain why (avoid false positives) - Use unambiguous pytest#214 reference instead of bare "issue pytest-dev#214" - Simplify loop: use safe_getattr directly for __wrapped__ traversal, the None check at loop start already handles termination - Remove narrating comments, add type annotation to seen set - Inline _issue_fixture_wrapped_warning into _check_for_wrapped_fixture and drop unused nodeid parameter from both helpers - Guard warn_explicit_for with isinstance check for FunctionType Co-authored-by: Cursor AI <ai@cursor.sh> Co-authored-by: Anthropic Claude Opus 4 <claude@anthropic.com>
2510a6a to
3f27e81
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.