1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-31 00:39:46 +00:00

oeqa/selftest/cases/runqemu: update imports

'tempfile' and 'oeqa.utils.command.runCmd' are unused while 'os' is
actually used.

(From OE-Core rev: 50f766233e83528eebeca92877277374c7193530)

Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Enrico Jörns
2023-03-31 12:26:13 +02:00
committed by Richard Purdie
parent f67258fcbf
commit 4d2c6baba5
+2 -2
View File
@@ -4,14 +4,14 @@
# SPDX-License-Identifier: MIT # SPDX-License-Identifier: MIT
# #
import os
import re import re
import tempfile
import time import time
import oe.types import oe.types
from oeqa.core.decorator import OETestTag from oeqa.core.decorator import OETestTag
from oeqa.core.decorator.data import skipIfNotArch, skipIfNotMachine from oeqa.core.decorator.data import skipIfNotArch, skipIfNotMachine
from oeqa.selftest.case import OESelftestTestCase from oeqa.selftest.case import OESelftestTestCase
from oeqa.utils.commands import bitbake, runqemu, get_bb_var, runCmd from oeqa.utils.commands import bitbake, runqemu, get_bb_var
@OETestTag("runqemu") @OETestTag("runqemu")
class RunqemuTests(OESelftestTestCase): class RunqemuTests(OESelftestTestCase):