Pārlūkot izejas kodu

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 <ju.o@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Julien Olivain 3 gadi atpakaļ
vecāks
revīzija
4b291f1bac
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      support/testing/tests/package/test_octave.py

+ 1 - 1
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)