Skip to content
This repository has been archived by the owner on Jan 13, 2024. 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 Feb 4, 2023
1 parent 50c8a05 commit 803eefd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 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', 'R1705', 'W0108', 'W0613',
'R1702', 'W0212', 'W0201', 'C0415', 'C0209',
'R1736'),
'R1736', 'R1735'),
skip=["Redefining built-in 'iter'",
"data_jcdecaux.py:597: W0612",
"data_jcdecaux.py:465: W0612",
Expand All @@ -40,7 +40,8 @@ def test_style_test(self):
test = os.path.normpath(os.path.join(thi, "..", ))
check_pep8(test, fLOG=fLOG, neg_pattern="temp_.*",
pylint_ignore=('C0103', 'C1801', 'R1705', 'W0108', 'W0613',
'C0111', 'W0703', 'C0415', 'C0209', 'R1736'),
'C0111', 'W0703', 'C0415', 'C0209', 'R1736',
'R1735'),
skip=["Redefining built-in 'iter'",
])

Expand Down

0 comments on commit 803eefd

Please sign in to comment.