I'm experiencing #7473 after the fix in #7476 with the following:
import pytest
@pytest.mark.parametrize('a', [1, 2])
def test_a(a):
pass
Where pylint still shows not-callable for pytest.mark.parametrize:
$ pylint -E test_pytest_7473.py
************* Module test_pytest_7473
test_pytest_7473.py:3:1: E1102: pytest.mark.parametrize is not callable (not-callable)
Environment:
- Python 3.8
- pytest==6.0.0
- pylint==2.5.3
FYI @bluetech
I'm experiencing #7473 after the fix in #7476 with the following:
Where pylint still shows
not-callableforpytest.mark.parametrize:Environment:
FYI @bluetech