summaryrefslogtreecommitdiff
path: root/tests/integration/pip_element.py
diff options
context:
space:
mode:
authorBenjamin Schubert <ben.c.schubert@gmail.com>2019-06-05 16:36:53 +0100
committerbst-marge-bot <marge-bot@buildstream.build>2019-06-06 10:44:56 +0000
commita4bd1a5a90b67dc095db520f1943cad23afcadc4 (patch)
tree8bf10e9ed374cf4fb9584fb5d32d2ab2ea64981a /tests/integration/pip_element.py
parentf68680b668386dc48b5c0454d0eec8660e80ebdb (diff)
downloadbuildstream-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/pip_element.py')
-rw-r--r--tests/integration/pip_element.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/integration/pip_element.py b/tests/integration/pip_element.py
index 384dd9924..834ce4c63 100644
--- a/tests/integration/pip_element.py
+++ b/tests/integration/pip_element.py
@@ -7,9 +7,9 @@ import pytest
from buildstream import _yaml
-from buildstream.testing import cli_integration as cli
+from buildstream.testing import cli_integration as cli # pylint: disable=unused-import
from buildstream.testing.integration import assert_contains
-from tests.testutils import setup_pypi_repo
+from tests.testutils import setup_pypi_repo # pylint: disable=unused-import
from tests.testutils.site import HAVE_SANDBOX