浏览代码

increased timeout to maybe fix the tests

Rodja Trappe 3 年之前
父节点
当前提交
4f17c92432
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      test_startup.sh

+ 1 - 1
test_startup.sh

@@ -1,7 +1,7 @@
 #!/usr/bin/env bash
 
 run() {
-    output=`{ timeout 5 python3 $1; } 2>&1`
+    output=`{ timeout 10 python3 $1; } 2>&1`
     exitcode=$?
     test $exitcode -eq 124 && exitcode=0 # exitcode 124 is comming from "timeout command above"
     echo $output | grep "JustPy ready to go" > /dev/null || exitcode=1