1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
From 8212a7a95128a142f8f67ad8a8a70810ecf0d416 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ond=C5=99ej=20Nov=C3=BD?= <onovy@debian.org>
Date: Thu, 10 May 2018 13:08:46 +0200
Subject: Disable abstract-method pylint check
---
pytest_pylint.py | 1 +
1 file changed, 1 insertion(+)
--- a/pytest_pylint.py
+++ b/pytest_pylint.py
@@ -243,6 +243,7 @@
print('-' * 65)
+# pylint: disable=abstract-method
class PyLintItem(pytest.Item, pytest.File):
"""pylint test running class."""
# pylint doesn't deal well with dynamic modules and there isn't an
|