We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd8a9cd commit a20cfefCopy full SHA for a20cfef
openhtf/core/test_executor.py
@@ -109,8 +109,8 @@ def finalize(self):
109
def wait(self):
110
"""Waits until death."""
111
try:
112
- # Timeout needed for SIGINT handling. Timeout is not actually used.
113
- self.join(60)
+ # Timeout needed for SIGINT handling. Set to a year.
+ self.join(31557600)
114
except KeyboardInterrupt:
115
self.test_state.logger.info('KeyboardInterrupt caught, aborting test.')
116
raise
0 commit comments