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 Feb 4, 2023
1 parent 2dd4a48 commit e39f8ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _unittests/ut_module/test_code_style.py
Expand Up @@ -16,7 +16,7 @@ def test_style_src(self):
check_pep8(src_, fLOG=fLOG,
pylint_ignore=('C0103', 'C1801', 'C2801', 'R1705', 'W0108', 'W0613',
'C0111', 'W0212', 'W0622', 'W0703', 'W0201',
'W0221', 'W0223', 'W0107',
'W0221', 'W0223', 'W0107', 'R1735',
'C0415', 'C0209'),
skip=["No name 'rectangle' in module 'cv2'",
"No name 'blur' in module 'cv2'",
Expand All @@ -34,7 +34,7 @@ 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', 'C2801', 'R1705', 'W0108', 'W0613',
'C0111', 'W0212', 'W0622', 'W0107',
'C0111', 'W0212', 'W0622', 'W0107', 'R1735',
'C0415', 'C0209'),
skip=[])

Expand Down

0 comments on commit e39f8ae

Please sign in to comment.