unittests: increase test timeout

It currently takes 1m30 to run on iotlab-m3.
This commit is contained in:
Gaëtan Harter 2018-07-17 16:57:10 +02:00
parent a0a31120b2
commit 690fdb11ab
No known key found for this signature in database
GPG Key ID: 76DF6BCF1B1F883B

View File

@ -17,4 +17,4 @@ def testfunc(child):
if __name__ == "__main__": if __name__ == "__main__":
sys.path.append(os.path.join(os.environ['RIOTTOOLS'], 'testrunner')) sys.path.append(os.path.join(os.environ['RIOTTOOLS'], 'testrunner'))
from testrunner import run from testrunner import run
sys.exit(run(testfunc, timeout=60)) sys.exit(run(testfunc, timeout=120))