ci/pylintrc: disable deprecated-method

Pylint deprecated-method report interferes with asyncio.ensure_future
compatibility monkeypatch. The function asyncio.async was renamed
between 3.4.3 (fc23) and 3.4.4 (what is currently on Travis). For
reference, debian stable has 3.4.2.
This commit is contained in:
Wojtek Porczyk 2017-03-02 13:08:25 +01:00
parent c2a0d34ade
commit c228bc934e

View File

@ -4,10 +4,13 @@ ignore=tests,backup.py
[MESSAGES CONTROL] [MESSAGES CONTROL]
# abstract-class-little-used: see http://www.logilab.org/ticket/111138 # abstract-class-little-used: see http://www.logilab.org/ticket/111138
# deprecated-method:
# enable again after disabling py-3.4.3 asyncio.ensure_future compat hack
disable= disable=
abstract-class-little-used, abstract-class-little-used,
bad-continuation, bad-continuation,
cyclic-import, cyclic-import,
deprecated-method,
duplicate-code, duplicate-code,
file-ignored, file-ignored,
fixme, fixme,
@ -17,8 +20,6 @@ disable=
missing-docstring, missing-docstring,
star-args star-args
confidence=HIGH,INFERENCE,INFERENCE_FAILURE
[REPORTS] [REPORTS]
# Set the output format. Available formats are text, parseable, colorized, msvs # Set the output format. Available formats are text, parseable, colorized, msvs