Skip to content

Commit

Permalink
tests: Update CI test.
Browse files Browse the repository at this point in the history
  • Loading branch information
iabdalkader committed Jul 10, 2024
1 parent 5876578 commit 3ca63ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ def on_value_changed(client, value):
sys.exit(0)


def wdt_task(client, ts=[None]):
def wdt_task(client, args, ts=[None]):
if ts[0] is None:
ts[0] = time.time()
if time.time() - ts[0] > 5:
if time.time() - ts[0] > 10:
loop = asyncio.get_event_loop()
loop.set_exception_handler(exception_handler)
logging.error("Timeout waiting for variable")
Expand Down

0 comments on commit 3ca63ae

Please sign in to comment.