diff --git a/src/etos_test_runner/lib/executor.py b/src/etos_test_runner/lib/executor.py index adb33bf..66f5173 100644 --- a/src/etos_test_runner/lib/executor.py +++ b/src/etos_test_runner/lib/executor.py @@ -14,16 +14,16 @@ # See the License for the specific language governing permissions and # limitations under the License. """ETR executor module.""" +import json +import logging import os +import re import shlex -import logging import signal -import json -import re import subprocess from pathlib import Path -from shutil import copy from pprint import pprint +from shutil import copy BASE = Path(__file__).parent.absolute() @@ -323,7 +323,7 @@ def _iterable_call( output_file.write(line.decode("utf-8")) if not wait_output: - signal.alarm(5) + signal.alarm(120) except SubprocessReadTimeout: pass finally: