diff options
| author | Aurélien Bompard <aurelien@bompard.org> | 2012-10-12 12:07:14 +0200 |
|---|---|---|
| committer | Aurélien Bompard <aurelien@bompard.org> | 2012-10-12 12:07:14 +0200 |
| commit | 0707603bb7793da9826b54e401cd6917918aa944 (patch) | |
| tree | f13f53c6f187a15722589d7820bbf3c68036c6a7 /kittystore/test | |
| parent | 93bcff3178dc4b4af341a5a806052d42c2214e5f (diff) | |
| download | kittystore-0707603bb7793da9826b54e401cd6917918aa944.tar.gz kittystore-0707603bb7793da9826b54e401cd6917918aa944.tar.xz kittystore-0707603bb7793da9826b54e401cd6917918aa944.zip | |
First PyLint pass
Diffstat (limited to 'kittystore/test')
| -rw-r--r-- | kittystore/test/test_scrub.py | 3 | ||||
| -rw-r--r-- | kittystore/test/test_storm_store.py | 1 | ||||
| -rw-r--r-- | kittystore/test/test_utils.py | 1 |
3 files changed, 5 insertions, 0 deletions
diff --git a/kittystore/test/test_scrub.py b/kittystore/test/test_scrub.py index 0504122..35e7d76 100644 --- a/kittystore/test/test_scrub.py +++ b/kittystore/test/test_scrub.py @@ -1,4 +1,7 @@ # -*- coding: utf-8 -*- +# pylint: disable=R0904,C0103 +# R0904: Too many public methods (X/20) +# C0103: Invalid name "xX" (should match [a-z_][a-z0-9_]{2,30}$) import unittest import email diff --git a/kittystore/test/test_storm_store.py b/kittystore/test/test_storm_store.py index 863928b..b00d3ba 100644 --- a/kittystore/test/test_storm_store.py +++ b/kittystore/test/test_storm_store.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# pylint: disable=R0904 import unittest import email diff --git a/kittystore/test/test_utils.py b/kittystore/test/test_utils.py index abea07f..f52f999 100644 --- a/kittystore/test/test_utils.py +++ b/kittystore/test/test_utils.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# pylint: disable=R0904 import unittest import email |
