8000 PEP8 : Squelch spurious tests · matplotlib/matplotlib@6464e2d · GitHub
[go: up one dir, main page]

Skip to content

Commit 6464e2d

Browse files
committed
PEP8 : Squelch spurious tests
The new ignore tests (E111, E112, E113, E265) are just picking up style infractions on the comments.
1 parent 24085ac commit 6464e2d

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

lib/matplotlib/tests/test_coding_standards.py

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,22 @@
3636
'_backend_gdk.py',
3737
'pyparsing*',
3838
'_qhull.py']
39-
PEP8_ADDITIONAL_IGNORE = ('E121', 'E122', 'E123', 'E124', 'E125',
40-
'E126', 'E127', 'E128')
39+
40+
PEP8_ADDITIONAL_IGNORE = ['E111',
41+
'E112',
42+
'E113',
43+
'E121',
44+
'E122',
45+
'E123',
46+
'E124',
47+
'E125',
48+
'E126',
49+
'E127',
50+
'E128',
51+
'E129',
52+
'E131',
53+
'E265']
54+
4155
EXPECTED_BAD_FILES = ['*/matplotlib/__init__.py',
4256
'*/matplotlib/_cm.py',
4357
'*/matplotlib/_mathtext_data.py',

0 commit comments

Comments
 (0)
0