From 03bc82b06dc0b27d17f5c6588a967afa6669c495 Mon Sep 17 00:00:00 2001 From: Carson Gee Date: Tue, 22 May 2018 14:19:17 -0600 Subject: [PATCH] Ignored unnecessary pylint check on pytest collector Closes #41 --- .gitignore | 1 + pytest_pylint.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 39efeea..be95869 100644 --- a/.gitignore +++ b/.gitignore @@ -39,6 +39,7 @@ htmlcov/ .coverage .coverage.* .cache +.pytest_cache/ nosetests.xml coverage.xml *,cover diff --git a/pytest_pylint.py b/pytest_pylint.py index 41c5c30..8170323 100644 --- a/pytest_pylint.py +++ b/pytest_pylint.py @@ -173,7 +173,7 @@ class PyLintItem(pytest.Item, pytest.File): # pylint doesn't deal well with dynamic modules and there isn't an # astng plugin for pylint in pypi yet, so we'll have to disable # the checks. - # pylint: disable=no-member,super-on-old-class + # pylint: disable=no-member,super-on-old-class,abstract-method def __init__(self, fspath, parent, msg_format=None, pylintrc_file=None): super(PyLintItem, self).__init__(fspath, parent)