Lines Matching +full:timeout +full:- +full:minutes
26 # For post-merge jobs, this should be ~infinite, but we can fail more
27 # aggressively for pre-merge.
31 # minutes.
33 # summing up to 9 minutes.
34 # It is better to retry the boot than cancel the job and re-submit to avoid
38 # Estimated overhead in minutes for a job from GitLab to reach the test phase,
44 LAVA_TEST_DUT_SUITE_TIMEOUT = int(getenv("CI_JOB_TIMEOUT")) // 60 - LAVA_TEST_OVERHEAD_MIN
51 # Gitlab job timeout.
52 LAVA_TEST_CASE_TIMEOUT = int(getenv("CI_JOB_TIMEOUT")) // 60 - LAVA_TEST_OVERHEAD_MIN
58 FALLBACK_GITLAB_SECTION_TIMEOUT = timedelta(minutes=10)
60 LogSectionType.LAVA_SUBMIT: timedelta(minutes=LAVA_SUBMIT_TIMEOUT),
61 LogSectionType.LAVA_QUEUE: timedelta(minutes=LAVA_QUEUE_TIMEOUT),
62 LogSectionType.LAVA_BOOT: timedelta(minutes=LAVA_BOOT_TIMEOUT),
63 LogSectionType.TEST_DUT_SUITE: timedelta(minutes=LAVA_TEST_DUT_SUITE_TIMEOUT),
64 LogSectionType.TEST_SUITE: timedelta(minutes=LAVA_TEST_SUITE_TIMEOUT),
65 LogSectionType.TEST_CASE: timedelta(minutes=LAVA_TEST_CASE_TIMEOUT),
67 minutes=LAVA_POST_PROCESSING_TIMEOUT
84 ) -> Optional[GitlabSection]:
92 timeout = DEFAULT_GITLAB_SECTION_TIMEOUTS[self.section_type]
95 header=f"{section_header} - Timeout: {timeout}",
129 section_id="post-{}",