From: Angus Gratton Date: Tue, 11 Jun 2019 00:15:42 +0000 (+1000) Subject: ci: Adjust the test_confserver timeout to 2 seconds X-Git-Tag: v4.0-beta1~250^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e08b787d790bf43fe733e94d5e2cace54ea91ed1;p=esp-idf ci: Adjust the test_confserver timeout to 2 seconds On a VM, it seems like 500ms is sometimes a very short time... --- diff --git a/tools/kconfig_new/test/test_confserver.py b/tools/kconfig_new/test/test_confserver.py index d5da31913c..20fce7e031 100755 --- a/tools/kconfig_new/test/test_confserver.py +++ b/tools/kconfig_new/test/test_confserver.py @@ -51,7 +51,7 @@ def main(): cmdline = "../confserver.py --kconfig Kconfig --config %s" % temp_sdkconfig_path print("Running: %s" % cmdline) - p = pexpect.spawn(cmdline, timeout=0.5) + p = pexpect.spawn(cmdline, timeout=2) p.logfile = args.logfile p.setecho(False)