summaryrefslogtreecommitdiff
path: root/tests/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'tests/plugins')
-rw-r--r--tests/plugins/deprecationwarnings/deprecationwarnings.py3
-rw-r--r--tests/plugins/deprecationwarnings/project/plugins/elements/deprecated_plugin.py2
2 files changed, 1 insertions, 4 deletions
diff --git a/tests/plugins/deprecationwarnings/deprecationwarnings.py b/tests/plugins/deprecationwarnings/deprecationwarnings.py
index 32aa7891a..10b93cc7a 100644
--- a/tests/plugins/deprecationwarnings/deprecationwarnings.py
+++ b/tests/plugins/deprecationwarnings/deprecationwarnings.py
@@ -1,9 +1,6 @@
import pytest
-import tempfile
import os
from buildstream.plugintestutils import cli
-from buildstream import _yaml
-import buildstream.plugins.elements.manual
DATA_DIR = os.path.join(
diff --git a/tests/plugins/deprecationwarnings/project/plugins/elements/deprecated_plugin.py b/tests/plugins/deprecationwarnings/project/plugins/elements/deprecated_plugin.py
index a8e39562a..1badf59af 100644
--- a/tests/plugins/deprecationwarnings/project/plugins/elements/deprecated_plugin.py
+++ b/tests/plugins/deprecationwarnings/project/plugins/elements/deprecated_plugin.py
@@ -1,4 +1,4 @@
-from buildstream import BuildElement, SandboxFlags
+from buildstream import BuildElement
class DeprecatedPlugin(BuildElement):