Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions openhtf/core/test_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ def finalize(self):
def wait(self):
"""Waits until death."""
try:
# Timeout needed for SIGINT handling. Timeout is not actually used.
self.join(60)
# Timeout needed for SIGINT handling. Set to a year.
self.join(31557600)
except KeyboardInterrupt:
self.test_state.logger.info('KeyboardInterrupt caught, aborting test.')
raise
Expand Down