Skip to content

Commit f556d5d

Browse files
authored
CU-869awnz6y: Allow both halves of v1 tests to run in a 45 minute window. (#186)
They would normally (i.e last successful run) run for a total of around 25 minutes. And the first half would take around 23.5 minutes. Looks like the first half is now taking more than 25 minutes, which makes it fail. However, the 2nd half seems to take only around 1 minute (53 seconds in last successful run), so the total doesn't need to be that high.
1 parent 90598ed commit f556d5d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/medcat-v1_main.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,9 @@ jobs:
5151
midpoint=$((num_files / 2))
5252
first_half_nl=$(echo "$all_files" | head -n $midpoint)
5353
second_half_nl=$(echo "$all_files" | tail -n +$(($midpoint + 1)))
54-
timeout 25m python -m unittest ${first_half_nl[@]}
55-
timeout 25m python -m unittest ${second_half_nl[@]}
54+
python -m unittest ${first_half_nl[@]}
55+
python -m unittest ${second_half_nl[@]}
56+
timeout-minutes: 45m
5657
- name: Regression
5758
run: source tests/resources/regression/run_regression.sh
5859
- name: Model backwards compatibility

0 commit comments

Comments
 (0)