Skip to content

Commit b5865ff

Browse files
committed
Tweak (re)try parameters
1 parent 4952a72 commit b5865ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: .github/workflows/cygwin-test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ jobs:
6363
- name: Install project and test dependencies
6464
run: |
6565
set +e
66-
for t in {1..5}; do
66+
for t in {1..10}; do
6767
echo "Starting try $t."
68-
timeout -s KILL "$((30 * (t + 1)))"s pip install ".[test]"
68+
timeout -s KILL "$((10 + t * 20))"s pip install ".[test]"
6969
status="$?"
7070
((status == 137)) || break
7171
done

0 commit comments

Comments
 (0)