Thanks to visit codestin.com Credit goes to github.com
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 2cb5403 commit a79053cCopy full SHA for a79053c
lib/matplotlib/tests/test_coding_standards.py
@@ -273,11 +273,16 @@ def test_pep8_conformance_examples():
273
274
exdir = os.path.join(mpldir, 'examples')
275
blacklist = ()
276
+ expected_bad_files = ['*/pylab_examples/table_demo.py',
277
+ '*/pylab_examples/tricontour_demo.py',
278
+ '*/pylab_examples/tripcolor_demo.py',
279
+ '*/pylab_examples/triplot_demo.py',
280
+ '*/shapes_and_collections/artist_reference.py']
281
assert_pep8_conformance(dirname=exdir,
282
extra_exclude_directories=blacklist,
283
pep8_additional_ignore=PEP8_ADDITIONAL_IGNORE +
284
['E116', 'E501'],
- expected_bad_files=())
285
+ expected_bad_files=expected_bad_files)
286
287
288
if __name__ == '__main__':
0 commit comments