From d401187fecc16d68e816832d0cace53e872c6afe Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Sat, 6 Aug 2022 17:51:53 -0600 Subject: [PATCH] test: Mark test_gpt tests as slow Mark all the tests in this file as slow, since they take a while. Signed-off-by: Simon Glass --- test/py/tests/test_gpt.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/py/tests/test_gpt.py b/test/py/tests/test_gpt.py index f707d9f253..cb44e1d789 100644 --- a/test/py/tests/test_gpt.py +++ b/test/py/tests/test_gpt.py @@ -13,6 +13,9 @@ These tests rely on a 4 MB disk image, which is automatically created by the test. """ +# Mark all tests here as slow +pytestmark = pytest.mark.slow + class GptTestDiskImage(object): """Disk Image used by the GPT tests.""" -- 2.39.5