From a09e1064f58673591093df7f3b709a775c06b866 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sat, 18 Apr 2015 11:18:54 +0300 Subject: Add running of pylint in 'make check' and fix things --- test-plugins/aaa_hello_plugin.py | 2 ++ test-plugins/hello_plugin.py | 2 ++ test-plugins/oldhello_plugin.py | 3 ++- test-plugins/wrongversion_plugin.py | 2 ++ 4 files changed, 8 insertions(+), 1 deletion(-) (limited to 'test-plugins') diff --git a/test-plugins/aaa_hello_plugin.py b/test-plugins/aaa_hello_plugin.py index b8f3253..9af3f83 100644 --- a/test-plugins/aaa_hello_plugin.py +++ b/test-plugins/aaa_hello_plugin.py @@ -6,3 +6,5 @@ class Hello(cliapp.Plugin): self.foo = foo self.bar = bar + def enable(self): + pass diff --git a/test-plugins/hello_plugin.py b/test-plugins/hello_plugin.py index a102502..c47adb7 100644 --- a/test-plugins/hello_plugin.py +++ b/test-plugins/hello_plugin.py @@ -13,3 +13,5 @@ class Hello(cliapp.Plugin): def setup(self): self.setup_called = True + def enable(self): + pass diff --git a/test-plugins/oldhello_plugin.py b/test-plugins/oldhello_plugin.py index e401ff7..9af3f83 100644 --- a/test-plugins/oldhello_plugin.py +++ b/test-plugins/oldhello_plugin.py @@ -6,4 +6,5 @@ class Hello(cliapp.Plugin): self.foo = foo self.bar = bar - + def enable(self): + pass diff --git a/test-plugins/wrongversion_plugin.py b/test-plugins/wrongversion_plugin.py index 9f54908..caf6307 100644 --- a/test-plugins/wrongversion_plugin.py +++ b/test-plugins/wrongversion_plugin.py @@ -10,3 +10,5 @@ class WrongVersion(cliapp.Plugin): def __init__(self, *args, **kwargs): pass + def enable(self): + pass -- cgit v1.2.1