Browse Source

tests/functional: Remove unnecessary import statements

pylint complains about these unnecessary import statements,
so let's remove them.

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-ID: <20250414145457.261734-1-thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
pull/291/head
Thomas Huth 1 year ago
parent
commit
99fb9256b7
  1. 3
      tests/functional/qemu_test/ports.py
  2. 2
      tests/functional/qemu_test/tuxruntest.py
  3. 2
      tests/functional/qemu_test/uncompress.py
  4. 6
      tests/functional/test_aarch64_rme_sbsaref.py
  5. 2
      tests/functional/test_aarch64_rme_virt.py
  6. 3
      tests/functional/test_aarch64_sbsaref_alpine.py
  7. 2
      tests/functional/test_aarch64_sbsaref_freebsd.py
  8. 1
      tests/functional/test_aarch64_tcg_plugins.py
  9. 8
      tests/functional/test_aarch64_virt.py
  10. 3
      tests/functional/test_arm_aspeed_ast2500.py
  11. 2
      tests/functional/test_arm_cubieboard.py
  12. 2
      tests/functional/test_arm_quanta_gsj.py
  13. 2
      tests/functional/test_arm_smdkc210.py
  14. 3
      tests/functional/test_migration.py
  15. 6
      tests/functional/test_mips64el_replay.py
  16. 2
      tests/functional/test_mips_replay.py
  17. 2
      tests/functional/test_mipsel_replay.py
  18. 8
      tests/functional/test_ppc64_hv.py
  19. 4
      tests/functional/test_vnc.py
  20. 2
      tests/functional/test_x86_64_kvm_xen.py

3
tests/functional/qemu_test/ports.py

@ -10,12 +10,11 @@
import fcntl
import os
import socket
import sys
import tempfile
from .config import BUILD_DIR
from typing import List
class Ports():
PORTS_ADDR = '127.0.0.1'

2
tests/functional/qemu_test/tuxruntest.py

@ -10,8 +10,6 @@
# SPDX-License-Identifier: GPL-2.0-or-later
import os
import stat
from subprocess import check_call, DEVNULL
from qemu_test import QemuSystemTest
from qemu_test import exec_command_and_wait_for_pattern

2
tests/functional/qemu_test/uncompress.py

@ -13,7 +13,7 @@ import os
import stat
import shutil
from urllib.parse import urlparse
from subprocess import run, CalledProcessError, DEVNULL
from subprocess import run, CalledProcessError
from .asset import Asset

6
tests/functional/test_aarch64_rme_sbsaref.py

@ -9,15 +9,13 @@
#
# SPDX-License-Identifier: GPL-2.0-or-later
import time
import os
import logging
from qemu_test import QemuSystemTest, Asset
from qemu_test import exec_command, wait_for_console_pattern
from qemu_test import QemuSystemTest, Asset, wait_for_console_pattern
from qemu_test import exec_command_and_wait_for_pattern
from test_aarch64_rme_virt import test_realms_guest
class Aarch64RMESbsaRefMachine(QemuSystemTest):
# Stack is built with OP-TEE build environment from those instructions:

2
tests/functional/test_aarch64_rme_virt.py

@ -9,9 +9,7 @@
#
# SPDX-License-Identifier: GPL-2.0-or-later
import time
import os
import logging
from qemu_test import QemuSystemTest, Asset
from qemu_test import exec_command, wait_for_console_pattern

3
tests/functional/test_aarch64_sbsaref_alpine.py

@ -10,11 +10,8 @@
#
# SPDX-License-Identifier: GPL-2.0-or-later
import os
from qemu_test import QemuSystemTest, Asset, skipSlowTest
from qemu_test import wait_for_console_pattern
from unittest import skipUnless
from test_aarch64_sbsaref import fetch_firmware

2
tests/functional/test_aarch64_sbsaref_freebsd.py

@ -10,8 +10,6 @@
#
# SPDX-License-Identifier: GPL-2.0-or-later
import os
from qemu_test import QemuSystemTest, Asset, skipSlowTest
from qemu_test import wait_for_console_pattern
from test_aarch64_sbsaref import fetch_firmware

1
tests/functional/test_aarch64_tcg_plugins.py

@ -13,7 +13,6 @@
import tempfile
import mmap
import os
import re
from qemu.machine.machine import VMLaunchFailure

8
tests/functional/test_aarch64_virt.py

@ -13,12 +13,8 @@
import logging
from subprocess import check_call, DEVNULL
from qemu.machine.machine import VMLaunchFailure
from qemu_test import QemuSystemTest, Asset
from qemu_test import exec_command, exec_command_and_wait_for_pattern
from qemu_test import wait_for_console_pattern
from qemu_test import skipIfMissingCommands, get_qemu_img
from qemu_test import QemuSystemTest, Asset, exec_command_and_wait_for_pattern
from qemu_test import wait_for_console_pattern, get_qemu_img
class Aarch64VirtMachine(QemuSystemTest):

3
tests/functional/test_arm_aspeed_ast2500.py

@ -4,9 +4,8 @@
#
# SPDX-License-Identifier: GPL-2.0-or-later
from qemu_test import Asset
from qemu_test import Asset, exec_command_and_wait_for_pattern
from aspeed import AspeedTest
from qemu_test import exec_command_and_wait_for_pattern
class AST2500Machine(AspeedTest):

2
tests/functional/test_arm_cubieboard.py

@ -4,8 +4,6 @@
#
# SPDX-License-Identifier: GPL-2.0-or-later
import os
from qemu_test import LinuxKernelTest, Asset, exec_command_and_wait_for_pattern
from qemu_test import interrupt_interactive_console_until_pattern
from qemu_test import skipBigDataTest

2
tests/functional/test_arm_quanta_gsj.py

@ -4,8 +4,6 @@
#
# SPDX-License-Identifier: GPL-2.0-or-later
import os
from qemu_test import LinuxKernelTest, Asset, exec_command_and_wait_for_pattern
from qemu_test import interrupt_interactive_console_until_pattern, skipSlowTest

2
tests/functional/test_arm_smdkc210.py

@ -4,8 +4,6 @@
#
# SPDX-License-Identifier: GPL-2.0-or-later
import os
from qemu_test import LinuxKernelTest, Asset

3
tests/functional/test_migration.py

@ -11,14 +11,13 @@
# This work is licensed under the terms of the GNU GPL, version 2 or
# later. See the COPYING file in the top-level directory.
import tempfile
import os
import time
from qemu_test import QemuSystemTest, skipIfMissingCommands
from qemu_test.ports import Ports
class MigrationTest(QemuSystemTest):
timeout = 10

6
tests/functional/test_mips64el_replay.py

@ -4,11 +4,7 @@
#
# SPDX-License-Identifier: GPL-2.0-or-later
import os
import logging
from qemu_test import Asset, exec_command_and_wait_for_pattern
from qemu_test import skipIfMissingImports, skipFlakyTest, skipUntrustedTest
from qemu_test import Asset, skipUntrustedTest
from replay_kernel import ReplayKernelBase

2
tests/functional/test_mips_replay.py

@ -4,7 +4,7 @@
#
# SPDX-License-Identifier: GPL-2.0-or-later
from qemu_test import Asset, skipSlowTest, exec_command_and_wait_for_pattern
from qemu_test import Asset, skipSlowTest
from replay_kernel import ReplayKernelBase

2
tests/functional/test_mipsel_replay.py

@ -4,7 +4,7 @@
#
# SPDX-License-Identifier: GPL-2.0-or-later
from qemu_test import Asset, wait_for_console_pattern, skipSlowTest
from qemu_test import Asset, skipSlowTest
from replay_kernel import ReplayKernelBase

8
tests/functional/test_ppc64_hv.py

@ -9,14 +9,14 @@
# This work is licensed under the terms of the GNU GPL, version 2 or
# later. See the COPYING file in the top-level directory.
import os
import subprocess
from datetime import datetime
from qemu_test import QemuSystemTest, Asset
from qemu_test import wait_for_console_pattern, exec_command
from qemu_test import skipIfMissingCommands, skipBigDataTest
from qemu_test import exec_command_and_wait_for_pattern
import os
import time
import subprocess
from datetime import datetime
# Alpine is a light weight distro that supports QEMU. These tests boot
# that on the machine then run a QEMU guest inside it in KVM mode,

4
tests/functional/test_vnc.py

@ -11,12 +11,12 @@
# later. See the COPYING file in the top-level directory.
import socket
from typing import List
from qemu.machine.machine import VMLaunchFailure
from qemu.machine.machine import VMLaunchFailure
from qemu_test import QemuSystemTest
from qemu_test.ports import Ports
VNC_ADDR = '127.0.0.1'
def check_connect(port: int) -> bool:

2
tests/functional/test_x86_64_kvm_xen.py

@ -11,8 +11,6 @@
#
# SPDX-License-Identifier: GPL-2.0-or-later
import os
from qemu.machine import machine
from qemu_test import QemuSystemTest, Asset, exec_command_and_wait_for_pattern

Loading…
Cancel
Save