From 2c4506b79f19d2c58e6eedced52172d88513e760 Mon Sep 17 00:00:00 2001 From: Jay Zoldak Date: Fri, 22 Mar 2013 17:13:58 -0400 Subject: [PATCH] Pylint to not require docstring for tests --- .pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index a9f19ca667..9ea1e62ad4 100644 --- a/.pylintrc +++ b/.pylintrc @@ -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]