diff options
author | Benjamin Schubert <ben.c.schubert@gmail.com> | 2019-06-05 16:36:53 +0100 |
---|---|---|
committer | bst-marge-bot <marge-bot@buildstream.build> | 2019-06-06 10:44:56 +0000 |
commit | a4bd1a5a90b67dc095db520f1943cad23afcadc4 (patch) | |
tree | 8bf10e9ed374cf4fb9584fb5d32d2ab2ea64981a /tests/integration/build-uid.py | |
parent | f68680b668386dc48b5c0454d0eec8660e80ebdb (diff) | |
download | buildstream-a4bd1a5a90b67dc095db520f1943cad23afcadc4.tar.gz |
tests/integration: Disable 'unused-import' checks that are pytest fixtures
Some imports are fixtures, that need to be in the current namespace when
pytest runs. However, pylint does not know this.
Disabling pylint checks on those imports
Diffstat (limited to 'tests/integration/build-uid.py')
-rw-r--r-- | tests/integration/build-uid.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/build-uid.py b/tests/integration/build-uid.py index b3548f421..d11153d55 100644 --- a/tests/integration/build-uid.py +++ b/tests/integration/build-uid.py @@ -4,7 +4,7 @@ import os import pytest -from buildstream.testing import cli_integration as cli +from buildstream.testing import cli_integration as cli # pylint: disable=unused-import from tests.testutils.site import HAVE_BWRAP, IS_LINUX, HAVE_SANDBOX |