Skip to content

Commit

Permalink
Update test_code_style.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Sep 27, 2019
1 parent ee7bb49 commit f7b333f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions _unittests/ut_module/test_code_style.py
Expand Up @@ -16,7 +16,8 @@ def test_style_src(self):
check_pep8(src_, fLOG=fLOG,
pylint_ignore=('C0103', 'C1801', 'R0201', 'R1705', 'W0108', 'W0613',
'C0111', 'W0212', 'W0622', 'W0703', 'W0201',
'W0221', 'W0223', 'W0107'),
'W0221', 'W0223', 'W0107',
'C0415'),
skip=["No name 'rectangle' in module 'cv2'",
"No name 'blur' in module 'cv2'",
"No name 'CascadeClassifier' in module 'cv2'",
Expand All @@ -33,7 +34,8 @@ def test_style_test(self):
test = os.path.normpath(os.path.join(thi, "..", ))
check_pep8(test, fLOG=fLOG, neg_pattern="((temp_.*)|(.*test_videodl_noenv4_face.*))",
pylint_ignore=('C0103', 'C1801', 'R0201', 'R1705', 'W0108', 'W0613',
'C0111', 'W0212', 'W0622', 'W0107'),
'C0111', 'W0212', 'W0622', 'W0107',
'C0415'),
skip=[])


Expand Down

0 comments on commit f7b333f

Please sign in to comment.