pylint: Ignore not-callable for tests
Workaround for https://github.com/pytest-dev/pytest/issues/7558
This commit is contained in:
parent
d5ae296ed2
commit
6263f7aa9a
|
|
@ -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]
|
||||
|
|
|
|||
Loading…
Reference in New Issue