From a90daa6a123d74a938a646e2fccaf4bfe6a5b950 Mon Sep 17 00:00:00 2001 From: Benjamin Schubert Date: Tue, 19 Mar 2019 18:05:05 +0000 Subject: tests:lint: silence redefined-outer-name in files using fixtures Pylint doesn't play well with pytest fixtures, we therefore need to silence this error. --- tests/sources/zip.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tests/sources/zip.py') diff --git a/tests/sources/zip.py b/tests/sources/zip.py index 64ef61c21..4df81ca29 100644 --- a/tests/sources/zip.py +++ b/tests/sources/zip.py @@ -1,3 +1,6 @@ +# Pylint doesn't play well with fixtures and dependency injection from pytest +# pylint: disable=redefined-outer-name + import os import zipfile -- cgit v1.2.1