Skip to content

Commit 6f58ce7

Browse files
authored
Merge pull request #88 from arduino/ci_tests
tests: Update CI test.
2 parents 5876578 + 3ca63ae commit 6f58ce7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/ci.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ def on_value_changed(client, value):
2222
sys.exit(0)
2323

2424

25-
def wdt_task(client, ts=[None]):
25+
def wdt_task(client, args, ts=[None]):
2626
if ts[0] is None:
2727
ts[0] = time.time()
28-
if time.time() - ts[0] > 5:
28+
if time.time() - ts[0] > 10:
2929
loop = asyncio.get_event_loop()
3030
loop.set_exception_handler(exception_handler)
3131
logging.error("Timeout waiting for variable")

0 commit comments

Comments
 (0)