Skip to content

Commit

Permalink
tests: on_target: relax test timeouts
Browse files Browse the repository at this point in the history
Relax timeouts to reduce CI instabilities.

Signed-off-by: Giacomo Dematteis <[email protected]>
  • Loading branch information
DematteisGiacomo committed Dec 9, 2024
1 parent 854afa2 commit 416d002
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/on_target/tests/test_functional/test_location.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def run_location(t91x_board, hex_file, location_method):
# Cloud connection
t91x_board.uart.flush()
reset_device()
t91x_board.uart.wait_for_str(patterns_cloud_connection, timeout=60)
t91x_board.uart.wait_for_str(patterns_cloud_connection, timeout=120)

# Location
t91x_board.uart.wait_for_str(patterns_location, timeout=180)
Expand Down
2 changes: 1 addition & 1 deletion tests/on_target/tests/test_functional/test_memfault.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def test_memfault(t91x_board, hex_file):

t91x_board.uart.flush()
reset_device()
t91x_board.uart.wait_for_str(patterns_memfault, timeout=60)
t91x_board.uart.wait_for_str(patterns_memfault, timeout=120)

# Trigger bus fault to generate memfault event
t91x_board.uart.write("mflt test busfault\r\n")
Expand Down

0 comments on commit 416d002

Please sign in to comment.