We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf54c2f commit 0b82dc6Copy full SHA for 0b82dc6
.github/workflows/cygwin-test.yml
@@ -60,13 +60,16 @@ jobs:
60
# This is used unless, and before, an updated pip is installed.
61
ln -s pip3 /usr/bin/pip
62
63
- - name: Install code coverage dependencies
64
- run: |
65
- pip install "coverage[toml]"
66
-
67
- name: Install project and test dependencies
68
run: |
69
- pip install ".[test]"
+ set +e
+ for t in {1..5}; do
+ echo "Starting try $t."
+ timeout 70s pip install ".[test]"
+ status="$?"
70
+ ((status == 124)) || break
71
+ done
72
+ exit "$status"
73
74
- name: Show version and platform information
75
0 commit comments