diff options
| author | Cleber Rosa <crosa@redhat.com> | 2024-08-06 13:31:12 -0400 |
|---|---|---|
| committer | Thomas Huth <thuth@redhat.com> | 2024-08-16 09:16:03 +0200 |
| commit | 3185e5a6f79b349934aebd955f3c1d6e29bc7bc2 (patch) | |
| tree | 239b93abfd1301fb1bebbc9b65b4b0ffe725fc88 /tests/avocado/machine_aspeed.py | |
| parent | e25264fe7b0455b45a6eb519d8e9ba2a708228fb (diff) | |
| download | focaccia-qemu-3185e5a6f79b349934aebd955f3c1d6e29bc7bc2.tar.gz focaccia-qemu-3185e5a6f79b349934aebd955f3c1d6e29bc7bc2.zip | |
tests/avocado: apply proper skipUnless decorator
Commit 9b45cc993 added many cases of skipUnless for the sake of organizing flaky tests. But, Python decorators *must* follow what they decorate, so the newlines added should *not* exist there. Signed-off-by: Cleber Rosa <crosa@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Tested-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org> Message-ID: <20240806173119.582857-3-crosa@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/avocado/machine_aspeed.py')
| -rw-r--r-- | tests/avocado/machine_aspeed.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/avocado/machine_aspeed.py b/tests/avocado/machine_aspeed.py index f8e263d37e..c0b01e8f1f 100644 --- a/tests/avocado/machine_aspeed.py +++ b/tests/avocado/machine_aspeed.py @@ -323,7 +323,6 @@ class AST2x00MachineSDK(QemuSystemTest, LinuxSSHMixIn): self.wait_for_console_pattern('Starting kernel ...') @skipUnless(os.getenv('QEMU_TEST_FLAKY_TESTS'), 'Test is unstable on GitLab') - def test_arm_ast2500_evb_sdk(self): """ :avocado: tags=arch:arm @@ -343,7 +342,6 @@ class AST2x00MachineSDK(QemuSystemTest, LinuxSSHMixIn): self.wait_for_console_pattern('nodistro.0 ast2500-default ttyS4') @skipUnless(os.getenv('QEMU_TEST_FLAKY_TESTS'), 'Test is unstable on GitLab') - def test_arm_ast2600_evb_sdk(self): """ :avocado: tags=arch:arm |