Skip to content

Latest commit

 

History

History
47 lines (32 loc) · 1.37 KB

pylint-ignore.md

File metadata and controls

47 lines (32 loc) · 1.37 KB

Pylint-Ignore

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:

  1. If a message refers to a valid issue, update your code rather than ignoring the message.
  2. If a message should always be ignored (globally), then to do so via the usual pylintrc or setup.cfg files rather than this pylint-ignore.md file.
  3. 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

Overview

W0511: fixme

File test/test_main.py - Line 133 - W0511 (fixme)

  • message: TODO (mb 2020-08-09): At least pretend to be on windows and check
  • author : Manuel Barkhau <mbarkhau@gmail.com>
  • date : 2020-08-09T19:18:07
  107: def test_selftest_ignore_update_noop(ignore_file, capsys):
  ...
  131:    assert stat_before.st_mtime == stat_after.st_mtime
  132:
> 133:
  134: # TODO (mb 2020-08-09): At least pretend to be on windows and check
  135: #   the not IS_FORK_METHOD_AVAILABLE codepaths