WARNING: This file is programmatically generated.
This file is parsed by pylint-ignore
to determine which
Pylint messages
should be ignored.
- Do not edit this file manually.
- To update, use
pylint-ignore --update-ignorefile
The recommended approach to using pylint-ignore
is:
- If a message refers to a valid issue, update your code rather than ignoring the message.
- If a message should always be ignored (globally), then to do so
via the usual
pylintrc
orsetup.cfg
files rather than thispylint-ignore.md
file. - If a message is a false positive, add a comment of this form to your code:
# pylint:disable=<symbol> ; explain why this is a false positive
message: Unreachable code
author : Manuel Barkhau <mbarkhau@gmail.com>
date : 2021-07-22T10:24:31
257: def test_postproc():
...
264: return
265:
> 266: assert '<svg class="bob"' in html_tag
267:
268: assert re.search(r"\.bg_fill\s*\{\s*fill:\s*white;", html_tag)
message: TODO (mb 2021-07-22): brittle test, perhaps switch to image diff
author : Manuel Barkhau <mbarkhau@gmail.com>
date : 2021-07-22T10:24:31
257: def test_postproc():
...
260: html_tag = ext.draw_bob(BASIC_BLOCK_TXT)
261:
> 262: # TODO (mb 2021-07-22): brittle test, perhaps switch to image diff
263: # based testing.
264: return