From 7e8f16dd22f131a7d689a1840ef901cb7c99fac1 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 1 Dec 2015 07:16:53 +0100 Subject: [PATCH] pylint: Disable deprecated-method in test_conftest. --- tests/test_conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_conftest.py b/tests/test_conftest.py index 6a2cca57d..fbaf28664 100644 --- a/tests/test_conftest.py +++ b/tests/test_conftest.py @@ -54,4 +54,4 @@ def test_installed_package(): def test_getargspec(): """Make sure the getargspec DeprecationWarning gets ignored.""" - inspect.getargspec(lambda: None) + inspect.getargspec(lambda: None) # pylint: disable=deprecated-method