3333 ]
3434
3535 steps :
36+ - name : Delay, waiting Pypi to update.
37+ if : ${{ github.event_name != 'workflow_dispatch' }}
38+ run : sleep 60
39+
3640 - uses : actions/checkout@v3
3741 - name : Set up QEMU
3842 if : matrix.i['arch'] == 'arm64'
7377 python-version : ["3.7", "3.8", "3.9", "3.10"]
7478
7579 steps :
80+ - name : Delay, waiting Pypi to update.
81+ if : ${{ github.event_name != 'workflow_dispatch' }}
82+ run : Start-Sleep -s 60
83+ shell : powershell
84+
7685 - uses : actions/checkout@v3
7786 - name : Set up Python
7887 uses : actions/setup-python@v3
8594 python3 -m pip install --only-binary=:all: pillow_heif
8695
8796 - name : Test wheel
88- run : cd .. && python3 -m pytest -s pillow_heif
97+ run : cd .. && python3 -m pytest -rs pillow_heif
8998
9099 macos-wheels :
91100 if : ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
@@ -96,6 +105,10 @@ jobs:
96105 python-version : ["pypy-3.7", "pypy-3.8", "3.7", "3.8", "3.9", "3.10"]
97106
98107 steps :
108+ - name : Delay, waiting Pypi to update.
109+ if : ${{ github.event_name != 'workflow_dispatch' }}
110+ run : sleep 60
111+
99112 - uses : actions/checkout@v3
100113 - name : Set up Python
101114 uses : actions/setup-python@v3
@@ -109,7 +122,7 @@ jobs:
109122 python3 -m pip install --only-binary=:all: pillow_heif
110123
111124 - name : Test wheel
112- run : cd .. && python3 -m pytest -s pillow_heif
125+ run : cd .. && python3 -m pytest -rs pillow_heif
113126
114127 manylinux-wheels :
115128 if : ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
@@ -120,6 +133,10 @@ jobs:
120133 python-version : ["pypy-3.7", "pypy-3.8", "3.6", "3.7", "3.8", "3.9", "3.10"]
121134
122135 steps :
136+ - name : Delay, waiting Pypi to update.
137+ if : ${{ github.event_name != 'workflow_dispatch' }}
138+ run : sleep 60
139+
123140 - uses : actions/checkout@v3
124141 - name : Set up Python
125142 uses : actions/setup-python@v3
@@ -133,4 +150,4 @@ jobs:
133150 python3 -m pip install --only-binary=:all: pillow_heif
134151
135152 - name : Test wheel
136- run : cd .. && python3 -m pytest -s pillow_heif
153+ run : cd .. && python3 -m pytest -rs pillow_heif
0 commit comments