tests/pkg_libcose: increase test timeout for nrf51dk

This commit is contained in:
Alexandre Abadie 2021-01-28 13:40:24 +01:00
parent 13b97be08c
commit dfa10efef4
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

View File

@ -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__":