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 Oct 23, 2021
1 parent 1fda75a commit 9647751
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions _unittests/ut_module/test_code_style.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ def test_style_src(self):
src_ = os.path.normpath(os.path.join(thi, "..", "..", "src"))
check_pep8(src_, fLOG=fLOG, verbose=False, run_cmd_filter=_run_cmd_filter,
pylint_ignore=('C0103', 'C1801', 'R0201', 'R1705', 'W0108', 'W0613',
'C0111', 'W0212', 'W0107', 'C0415', 'R1725', 'W1514'),
'C0111', 'W0212', 'W0107', 'C0415', 'R1725', 'W1514',
'C0209'),
skip=["Use % formatting in logging functions and pass the % parameters",
"Redefining built-in 'next'",
"Redefining name 'fLOG' from outer scope ",
Expand Down Expand Up @@ -57,7 +58,7 @@ def test_style_test(self):
run_cmd_filter=_run_cmd_filter,
pylint_ignore=('C0103', 'C1801', 'R0201', 'R1705', 'W0108', 'W0613',
'C0111', 'C0414', 'W0107', 'W0611', 'C0415', 'R1725',
'W1514'),
'W1514', 'C0209'),
skip=["Module 'ujson' has no 'loads'",
"Redefining built-in 'iter'",
"Redefining name 'path' from outer scope",
Expand Down

0 comments on commit 9647751

Please sign in to comment.