A Pylint plugin to suppress pytest-related false positives.
Project description
pylint-pytest
A Pylint plugin to suppress pytest-related false positives.
Installation
Requirements:
pylint
pytest>=4.6
To install:
$ pip install pylint-pytest
Usage
Enable via command line option --load-plugins
$ pylint --load-plugins pylint_pytest <path_to_your_sources>
Or in pylintrc
:
[MASTER]
load-plugins=pylint_pytest
Suppressed Pylint Warnings
unused-argument
FP when a fixture is used in an applicable function but not referenced in the function body, e.g.
def test_something(conftest_fixture): # <- Unused argument 'conftest_fixture'
assert True
unused-import
FP when an imported fixture is used in an applicable function, e.g.
from fixture_collections import imported_fixture # <- Unused imported_fixture imported from fixture_collections
def test_something(imported_fixture):
...
redefined-outer-name
FP when an imported/declared fixture is used in an applicable function, e.g.
from fixture_collections import imported_fixture
def test_something(imported_fixture): # <- Redefining name 'imported_fixture' from outer scope (line 1)
...
no-member
FP when class attributes are defined in setup fixtures
import pytest
class TestClass(object):
@staticmethod
@pytest.fixture(scope='class', autouse=True)
def setup_class(request):
cls = request.cls
cls.defined_in_setup_class = True
def test_foo(self):
assert self.defined_in_setup_class # <- Instance of 'TestClass' has no 'defined_in_setup_class' member
Raise new warning(s)
W6401 deprecated-pytest-yield-fixture
Raise when using deprecated @pytest.yield_fixture
decorator (ref)
import pytest
@pytest.yield_fixture # <- Using a deprecated @pytest.yield_fixture decorator
def yield_fixture():
yield
Changelog
See CHANGELOG.
License
pylint-pytest
is available under MIT license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file pylint_pytest-1.0.2-py2.py3-none-any.whl
.
File metadata
- Download URL: pylint_pytest-1.0.2-py2.py3-none-any.whl
- Upload date:
- Size: 7.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/54.1.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 55fe23210e8e6f73566cae33c0c12007d889eb15579e9d64ef0488cc6b56598f |
|
MD5 | 7e4cb0391857a094f653da9341051d9f |
|
BLAKE2b-256 | d200c8be12eced1661e58a6863fbfa8c07c405782021380f7afd662805d0aa69 |