diff options
author | Benjamin Schubert <ben.c.schubert@gmail.com> | 2019-03-19 18:36:38 +0000 |
---|---|---|
committer | Benjamin Schubert <ben.c.schubert@gmail.com> | 2019-03-20 09:38:42 +0000 |
commit | da439e6658049bb79ca471f4eeac401e70c548f1 (patch) | |
tree | 1d7a1a4f64ecade572aa2b2bfaaa9e77164f4baf /tests/examples/junctions.py | |
parent | a90daa6a123d74a938a646e2fccaf4bfe6a5b950 (diff) | |
download | buildstream-da439e6658049bb79ca471f4eeac401e70c548f1.tar.gz |
tests:lint: disable 'unused-import' checks on pytest fixtures
Pylint can't know that pytest's fixtures are used in a file and
therefore reports false positives. Silencing all those errors
Diffstat (limited to 'tests/examples/junctions.py')
-rw-r--r-- | tests/examples/junctions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/examples/junctions.py b/tests/examples/junctions.py index 0d9e18fd2..621ca1c17 100644 --- a/tests/examples/junctions.py +++ b/tests/examples/junctions.py @@ -4,7 +4,7 @@ import os import pytest -from buildstream.plugintestutils import cli_integration as cli +from buildstream.plugintestutils import cli_integration as cli # pylint: disable=unused-import from tests.testutils.site import IS_LINUX, HAVE_BWRAP, MACHINE_ARCH pytestmark = pytest.mark.integration |