summaryrefslogtreecommitdiff
path: root/test-plugins
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2015-04-18 11:18:54 +0300
committerLars Wirzenius <liw@liw.fi>2015-04-18 15:41:49 +0300
commita09e1064f58673591093df7f3b709a775c06b866 (patch)
tree173e13e3a3293e4a1871bb1fa2bb1ad3cd07d938 /test-plugins
parentd3b79bed48895150fb7c33f577716a900fda3833 (diff)
downloadcliapp-a09e1064f58673591093df7f3b709a775c06b866.tar.gz
Add running of pylint in 'make check' and fix things
Diffstat (limited to 'test-plugins')
-rw-r--r--test-plugins/aaa_hello_plugin.py2
-rw-r--r--test-plugins/hello_plugin.py2
-rw-r--r--test-plugins/oldhello_plugin.py3
-rw-r--r--test-plugins/wrongversion_plugin.py2
4 files changed, 8 insertions, 1 deletions
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