pylint: Disable unnecessary-ellipsis for tests
See https://github.com/PyCQA/pylint/issues/6036 and https://github.com/PyCQA/pylint/issues/6037
This commit is contained in:
parent
2957c5ccb8
commit
2b76b61640
|
|
@ -64,6 +64,9 @@ def main():
|
|||
'import-error',
|
||||
# tests/helpers imports
|
||||
'wrong-import-order',
|
||||
# https://github.com/PyCQA/pylint/issues/6036
|
||||
# https://github.com/PyCQA/pylint/issues/6037
|
||||
'unnecessary-ellipsis',
|
||||
]
|
||||
|
||||
toxinidir = sys.argv[1]
|
||||
|
|
|
|||
Loading…
Reference in New Issue