We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
before
import pytest @pytest.mark.parametrize("foo,bar", [(1, 2), (3, 4)]) class Foo: def test_foo(self, foo: int, bar: int): assert foo < bar @pytest.mark.parametrize("foo,bar", [(1, 2), (3, 4)]) def test_bar(foo: int, bar: int): assert foo < bar
lint & fix
$ ruff --version ruff 0.0.247 $ ruff --select PT006 PT006.py PT006.py:10:26: PT006 [*] Wrong name(s) type in `@pytest.mark.parametrize`, expected `tuple` Found 1 error. [*] 1 potentially fixable with the --fix option. $ ruff --select PT006 --fix PT006.py Found 1 error (1 fixed, 0 remaining).
after
import pytest @pytest.mark.parametrize("foo,bar", [(1, 2), (3, 4)]) class Foo: def test_foo(self, foo: int, bar: int): assert foo < bar @pytest.mark.parametrize(("foo", "bar"), [(1, 2), (3, 4)]) def test_bar(foo: int, bar: int): assert foo < bar
expected
import pytest @pytest.mark.parametrize(("foo", "bar"), [(1, 2), (3, 4)]) class Foo: def test_foo(self, foo: int, bar: int): assert foo < bar @pytest.mark.parametrize(("foo", "bar"), [(1, 2), (3, 4)]) def test_bar(foo: int, bar: int): assert foo < bar
The text was updated successfully, but these errors were encountered:
@edgarrmondragon - Do you know if these rules can just be applied "blindly" to classes, as to functions?
Sorry, something went wrong.
@charliermarsh @MichaReiser I think #14515 fixed this issue (preview mode is required to check any pytest.mark.parametrize calls).
pytest.mark.parametrize
Thanks @harupy
No branches or pull requests
before
lint & fix
after
expected
The text was updated successfully, but these errors were encountered: