pytest-parameter-with-default-argument (PT028)
Derived from the flake8-pytest-style linter.
This rule is unstable and in preview. The --preview
flag is required for use.
What it does
Checks for parameters of test functions with default arguments.
Why is this bad?
Such a parameter will always have the default value during the test regardless of whether a fixture with the same name is defined.
Example
Use instead:
Fix safety
This rule's fix is marked as unsafe, as modifying a function signature can change the behavior of the code.