File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
.github/actions/regression-tests Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -52,11 +52,11 @@ runs:
52
52
if [[ "${{inputs.epoll}}" == 'epoll' ]]; then
53
53
export FILTER="${{inputs.filter}} and not exclude_epoll"
54
54
# 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=$?
56
56
else
57
57
export FILTER="${{inputs.filter}}"
58
58
# 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=$?
60
60
fi
61
61
62
62
# timeout returns 124 if we exceeded the timeout duration
You can’t perform that action at this time.
0 commit comments