Skip to content
This repository has been archived by the owner on Jul 22, 2023. It is now read-only.

Commit

Permalink
Update test_code_style.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Oct 15, 2021
1 parent 1fedace commit e60c9b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _unittests/ut_module/test_code_style.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def test_style_src(self):
check_pep8(src_,
pylint_ignore=('C0103', 'C1801', 'R0201', 'R1705', 'W0108', 'W0613',
'C0111', 'C0412', 'W0622', 'W0621', 'C0411',
'C0415', 'W0107'),
'C0415', 'W0107', 'C0209'),
fLOG=fLOG,
skip=["email_sender.py:45: W0603",
"Redefining built-in ",
Expand All @@ -33,7 +33,7 @@ def test_style_test(self):
check_pep8(test, fLOG=fLOG, neg_pattern="temp_.*",
pylint_ignore=('C0103', 'C1801', 'R0201', 'R1705', 'W0108', 'W0613',
'C0111', 'C0412', 'W0622', 'W0621', 'C0411',
'C0415'),
'C0415', 'C0209'),
skip=[])


Expand Down

0 comments on commit e60c9b4

Please sign in to comment.