We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6ef5cb commit 3d495f8Copy full SHA for 3d495f8
_unittests/ut_module/test_code_style.py
@@ -16,7 +16,8 @@ def test_style_src(self):
16
thi, "..", "..", "pandas_streaming"))
17
check_pep8(src_, fLOG=fLOG,
18
pylint_ignore=('C0103', 'C1801', 'R1705', 'W0108', 'W0613',
19
- 'W0212', 'W0703', 'W0107', 'C0302', 'C0209'),
+ 'W0212', 'W0703', 'W0107', 'C0302', 'C0209',
20
+ 'C3001'),
21
skip=["Too many nested blocks",
22
"Module 'numpy.random' has no 'RandomState' member",
23
"dataframe_split.py:60: [E731]",
@@ -27,7 +28,8 @@ def test_style_test(self):
27
28
test = os.path.normpath(os.path.join(thi, "..", ))
29
check_pep8(test, fLOG=fLOG, neg_pattern="temp_.*",
30
- 'C0111', 'W0107', 'C0302', 'R1732', 'C0209'),
31
+ 'C0111', 'W0107', 'C0302', 'R1732', 'C0209',
32
33
skip=[])
34
35
0 commit comments