From dfa10efef47ca4fe59ac2b1b837cf0fe118eef58 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Thu, 28 Jan 2021 13:40:24 +0100 Subject: [PATCH] tests/pkg_libcose: increase test timeout for nrf51dk --- tests/pkg_libcose/tests/01-run.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/pkg_libcose/tests/01-run.py b/tests/pkg_libcose/tests/01-run.py index 0118273127..9810ad9cd6 100755 --- a/tests/pkg_libcose/tests/01-run.py +++ b/tests/pkg_libcose/tests/01-run.py @@ -14,8 +14,8 @@ from testrunner import TIMEOUT as DEFAULT_TIMEOUT BOARD = os.environ['BOARD'] # on real hardware, this test application can take several minutes to -# complete (~4min on microbit) -TIMEOUT = 300 if BOARD != 'native' else DEFAULT_TIMEOUT +# complete (>5min on nrf51dk) +TIMEOUT = 400 if BOARD != 'native' else DEFAULT_TIMEOUT if __name__ == "__main__":