summaryrefslogtreecommitdiff
path: root/tests/integration/cmake.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/cmake.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/cmake.py')
-rw-r--r--tests/integration/cmake.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/cmake.py b/tests/integration/cmake.py
index d092ec95f..87b850e2d 100644
--- a/tests/integration/cmake.py
+++ b/tests/integration/cmake.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 buildstream.testing.integration import assert_contains
from tests.testutils.site import HAVE_SANDBOX