pylint: Ignore not-callable for tests

Workaround for https://github.com/pytest-dev/pytest/issues/7558
This commit is contained in:
Florian Bruhin 2020-07-29 10:23:03 +02:00
parent d5ae296ed2
commit 6263f7aa9a
1 changed files with 2 additions and 0 deletions

View File

@ -60,6 +60,8 @@ def main():
'compare-to-empty-string',
# directories without __init__.py...
'import-error',
# WORKAROUND for https://github.com/pytest-dev/pytest/issues/7558
'not-callable',
]
toxinidir = sys.argv[1]