Pylint to not require docstring for tests

This commit is contained in:
Jay Zoldak
2013-03-22 17:13:58 -04:00
parent b9dca0618f
commit 2c4506b79f

View File

@@ -138,7 +138,7 @@ bad-names=foo,bar,baz,toto,tutu,tata
# Regular expression which should only match functions or classes name which do
# not require a docstring
no-docstring-rgx=__.*__
no-docstring-rgx=(__.*__|test_.*)
[MISCELLANEOUS]