From bbe4a64e36c7c4fa10741c752e2172d94976b864 Mon Sep 17 00:00:00 2001 From: Julien Olivain Date: Mon, 8 Aug 2022 22:14:24 +0200 Subject: [PATCH] support/testing: octave: increase test timeout Octave package test can occasionally fail due to timeout while testing some octave modules. This commit slightly increase the timeout value to reduce those failures. Signed-off-by: Julien Olivain Signed-off-by: Thomas Petazzoni (cherry picked from commit 4b291f1bace77b0f462d663b16fab719187dab88) Signed-off-by: Peter Korsgaard --- support/testing/tests/package/test_octave.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/testing/tests/package/test_octave.py b/support/testing/tests/package/test_octave.py index 82a70e09c2..cdbe2688df 100644 --- a/support/testing/tests/package/test_octave.py +++ b/support/testing/tests/package/test_octave.py @@ -76,4 +76,4 @@ class TestOctave(infra.basetest.BRTest): for mod in octave_modules: cmd = self.octave_cmd('assert(test(\"{}\"),true)'.format(mod)) - self.assertRunOk(cmd) + self.assertRunOk(cmd, timeout=10)