Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fa2ee50

Browse files
committed
remove blacklisted examples from coding style unittest
Signed-off-by: Thomas Hisch <[email protected]>
1 parent 7122484 commit fa2ee50

File tree

1 file changed

+2
-21
lines changed

1 file changed

+2
-21
lines changed

lib/matplotlib/tests/test_coding_standards.py

Lines changed: 2 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -272,29 +272,10 @@ def test_pep8_conformance_examples():
272272
"of the source tree")
273273

274274
exdir = os.path.join(mpldir, 'examples')
275-
blacklist = ['color',
276-
'event_handling',
277-
'images_contours_and_fields',
278-
'lines_bars_and_markers',
279-
'misc',
280-
'mplot3d',
281-
'pie_and_polar_charts',
282-
'pylab_examples',
283-
'shapes_and_collections',
284-
'showcase',
285-
'specialty_plots',
286-
'statistics',
287-
'style_sheets',
288-
'subplots_axes_and_figures',
289-
'tests',
290-
'text_labels_and_annotations',
291-
'ticks_and_spines',
292-
'units',
293-
'user_interfaces',
294-
'widgets']
275+
blacklist = ()
295276
assert_pep8_conformance(dirname=exdir,
296277
extra_exclude_directories=blacklist,
297-
expected_bad_files=[])
278+
expected_bad_files=())
298279

299280

300281
if __name__ == '__main__':

0 commit comments

Comments
 (0)