[four-in-a-row/meson-tests] Meson: increase AI test timeout



commit 04688c44b545b806e2fd2f724dcb060f37e425f0
Author: Bilal Elmoussaoui <bil elmoussaoui gmail com>
Date:   Sat Feb 2 01:12:41 2019 +0000

    Meson: increase AI test timeout
    
    Currently, CI fails cause tests timeout is set by default to 30s which is not enough.
    I did bunch of tests and the tests takes approximatively between 30 to 45s.

 src/meson.build | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
---
diff --git a/src/meson.build b/src/meson.build
index 97c02be..00b3805 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -1,4 +1,3 @@
-
 four_in_a_row_tests = executable('four-in-a-row-tests', 
     [
         'ai.vala',
@@ -9,7 +8,9 @@ four_in_a_row_tests = executable('four-in-a-row-tests',
         glib_dependency
     ]
 )
-test('four-in-a-row-tests', four_in_a_row_tests)
+test('four-in-a-row-tests', 
+    four_in_a_row_tests,
+    timeout: 60)
 
 
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]