]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core.git/commitdiff
oeqa/sdk: remove unused imports from test cases
authorRoss Burton <ross.burton@arm.com>
Mon, 20 May 2024 10:18:29 +0000 (10:18 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 22 May 2024 09:20:08 +0000 (10:20 +0100)
Remove redundant imports.

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/lib/oeqa/sdk/cases/autotools.py
meta/lib/oeqa/sdk/cases/makefile.py
meta/lib/oeqa/sdk/cases/maturin.py
meta/lib/oeqa/sdk/cases/python.py
meta/lib/oeqa/sdk/cases/rust.py

index a711353791cecdf5cb157c3534e39c09af02510c..848e9392ec004632dcd717205cc68b7b895deaff 100644 (file)
@@ -7,7 +7,6 @@
 import os
 import tempfile
 import subprocess
-import unittest
 
 from oeqa.sdk.case import OESDKTestCase
 from oeqa.utils.subprocesstweak import errors_have_output
index c0b40f1f7283171db1501545eea52c03cd88aba4..2ff54ce25fff7659f84af04d217f89b9395e0cc0 100644 (file)
@@ -4,7 +4,7 @@
 # SPDX-License-Identifier: MIT
 #
 
-import os, tempfile, subprocess, unittest
+import os, tempfile, subprocess
 from oeqa.sdk.case import OESDKTestCase
 from oeqa.utils.subprocesstweak import errors_have_output
 errors_have_output()
index ea10f568b27879f62041c8720cbaaa0bbe6fbf5b..20f6b553d0bac84da12e71af973f5c3cd0de6091 100644 (file)
@@ -8,7 +8,6 @@ import os
 import shutil
 import unittest
 
-from oeqa.core.utils.path import remove_safe
 from oeqa.sdk.case import OESDKTestCase
 from oeqa.utils.subprocesstweak import errors_have_output
 
index 5ea992b9f332bb6dc2a7841d1e6782a7a7699120..51284949f507b90b4ea6fde2283d97a67c925a9d 100644 (file)
@@ -4,7 +4,7 @@
 # SPDX-License-Identifier: MIT
 #
 
-import subprocess, unittest
+import unittest
 from oeqa.sdk.case import OESDKTestCase
 
 from oeqa.utils.subprocesstweak import errors_have_output
index f5d437bb19dbf7406344160d15c4a86c891d310a..a54245851b424003fd45937759156d447453c60b 100644 (file)
@@ -8,7 +8,6 @@ import os
 import shutil
 import unittest
 
-from oeqa.core.utils.path import remove_safe
 from oeqa.sdk.case import OESDKTestCase
 
 from oeqa.utils.subprocesstweak import errors_have_output