Skip to content

Commit 68a5d2c

Browse files
authored
chore: increase timeout to 80mins for reg tests (#5819)
Signed-off-by: kostas <[email protected]>
1 parent 7e3cce9 commit 68a5d2c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/regression-tests/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@ runs:
5252
if [[ "${{inputs.epoll}}" == 'epoll' ]]; then
5353
export FILTER="${{inputs.filter}} and not exclude_epoll"
5454
# Run only replication tests with epoll
55-
timeout 60m pytest -m "$FILTER" --durations=10 --timeout=300 --color=yes --json-report --json-report-file=report.json dragonfly --df force_epoll=true --log-cli-level=INFO || code=$?
55+
timeout 80m pytest -m "$FILTER" --durations=10 --timeout=300 --color=yes --json-report --json-report-file=report.json dragonfly --df force_epoll=true --log-cli-level=INFO || code=$?
5656
else
5757
export FILTER="${{inputs.filter}}"
5858
# Run only replication tests with iouring
59-
timeout 60m pytest -m "$FILTER" --durations=10 --timeout=300 --color=yes --json-report --json-report-file=report.json dragonfly --log-cli-level=INFO || code=$?
59+
timeout 80m pytest -m "$FILTER" --durations=10 --timeout=300 --color=yes --json-report --json-report-file=report.json dragonfly --log-cli-level=INFO || code=$?
6060
fi
6161
6262
# timeout returns 124 if we exceeded the timeout duration

0 commit comments

Comments
 (0)