Commit 82b2fc25 authored by Jan Kiene's avatar Jan Kiene
Browse files

add timeout for IvasBuildAndRunChecks.py too

parent 8b3fbac3
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -704,6 +704,9 @@ def runner_setup(runner, args):
    if args["filter_regex"]:
        runner.filter = args["filter_regex"]

    if args["timeout"] is not None:
        runner.timeout = args["timeout"]


def analyzer_setup(analyzer, args):
    bs_proc_chain = {}
+2 −0
Original line number Diff line number Diff line
@@ -775,6 +775,7 @@ class IvasBuilderAndRunner(IvasBaseClass):
        formats_dict={},
        formats_fname="",
        max_workers=1,
        timeout=None,
    ):
        """

@@ -840,6 +841,7 @@ class IvasBuilderAndRunner(IvasBaseClass):
                enable_logging=True,
                logger_name="{}.{}runner".format(self.logger.name, cfg_name),
                log_level=self.logger.level,
                timeout=timeout,
            )
            if format_select_list:
                newRunner.set_format_select_list(format_select_list)