Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Jun 4, 2022
1 parent 023913d commit 992dcce
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 @@ -15,7 +15,7 @@ def test_style_src(self):
src_ = os.path.normpath(os.path.join(
thi, "..", "..", "cpyquickhelper"))
check_pep8(src_, fLOG=fLOG,
pylint_ignore=('C0103', 'C1801', 'R0201', 'R1705', 'W0108', 'W0613',
pylint_ignore=('C0103', 'C1801', 'R1705', 'W0108', 'W0613',
'W0212', 'C0209'),
skip=["No name 'kill_thread' in module 'cpyquickhelper.parallel.threader'",
"capture' in module 'cpyquickhelper.io.stdchelper'",
Expand All @@ -27,7 +27,7 @@ def test_style_test(self):
thi = os.path.abspath(os.path.dirname(__file__))
test = os.path.normpath(os.path.join(thi, "..", ))
check_pep8(test, fLOG=fLOG, neg_pattern="temp_.*",
pylint_ignore=('C0103', 'C1801', 'R0201', 'R1705', 'W0108', 'W0613',
pylint_ignore=('C0103', 'C1801', 'R1705', 'W0108', 'W0613',
'C0111', 'W0703', 'C0415', 'C0209'),
skip=["No name 'cprint' in module 'cpyquickhelper.io.stdchelper'",
"test_weighted_dataframe.py:29: E0611",
Expand Down

0 comments on commit 992dcce

Please sign in to comment.