Skip to content

Commit c56030e

Browse files
committed
make coveralls submission work with py2.6 again
1 parent 66d0d74 commit c56030e

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,13 @@ jobs:
374374
COVERALLS_FLAG_NAME: ${{ matrix.name }}
375375
COVERALLS_PARALLEL: true
376376
COVERALLS_SERVICE_NAME: github
377-
run: coveralls
377+
PY_VERSION: ${{ matrix.python-version }}
378+
run: |
379+
if [[ $PY_VERSION == "2.6" ]]; then
380+
COVERALLS_SKIP_SSL_VERIFY=1 coveralls
381+
else
382+
coveralls
383+
fi
378384
379385
coveralls:
380386
name: Indicate completion to coveralls.io

0 commit comments

Comments
 (0)