Skip to content

Commit a20cfef

Browse files
wallacbeKenadia
authored andcommitted
update test executor timeout (#695)
1 parent cd8a9cd commit a20cfef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

openhtf/core/test_executor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,8 @@ def finalize(self):
109109
def wait(self):
110110
"""Waits until death."""
111111
try:
112-
# Timeout needed for SIGINT handling. Timeout is not actually used.
113-
self.join(60)
112+
# Timeout needed for SIGINT handling. Set to a year.
113+
self.join(31557600)
114114
except KeyboardInterrupt:
115115
self.test_state.logger.info('KeyboardInterrupt caught, aborting test.')
116116
raise

0 commit comments

Comments
 (0)