Skip to content
New issue

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

PT006: ignores parametrize markers on classes #2955

Closed
bastimeyer opened this issue Feb 16, 2023 · 3 comments
Closed

PT006: ignores parametrize markers on classes #2955

bastimeyer opened this issue Feb 16, 2023 · 3 comments
Labels
needs-decision Awaiting a decision from a maintainer rule Implementing or modifying a lint rule

Comments

@bastimeyer
Copy link

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
@charliermarsh
Copy link
Member

@edgarrmondragon - Do you know if these rules can just be applied "blindly" to classes, as to functions?

@charliermarsh charliermarsh added the question Asking for support or clarification label Feb 16, 2023
@charliermarsh charliermarsh added rule Implementing or modifying a lint rule needs-decision Awaiting a decision from a maintainer and removed question Asking for support or clarification labels Jul 10, 2023
@harupy
Copy link
Contributor

harupy commented Dec 2, 2024

@charliermarsh @MichaReiser I think #14515 fixed this issue (preview mode is required to check any pytest.mark.parametrize calls).

@MichaReiser
Copy link
Member

Thanks @harupy

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
needs-decision Awaiting a decision from a maintainer rule Implementing or modifying a lint rule
Projects
None yet
Development

No branches or pull requests

4 participants