diff options
author | Simon Glass <sjg@chromium.org> | 2022-08-06 17:51:53 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-09-12 18:06:36 -0400 |
commit | d401187fecc16d68e816832d0cace53e872c6afe (patch) | |
tree | 70ab880a5b6a5330e0e839e25ef3a70c22929ae1 /test | |
parent | c7c113dc133b0833cde1366820ecfcc3c3869fad (diff) | |
download | u-boot-d401187fecc16d68e816832d0cace53e872c6afe.tar.gz |
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 <sjg@chromium.org>
Diffstat (limited to 'test')
-rw-r--r-- | test/py/tests/test_gpt.py | 3 |
1 files changed, 3 insertions, 0 deletions
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.""" |