Skip to content

Commit

Permalink
ci.yml update for python2.6 coveralls
Browse files Browse the repository at this point in the history
  • Loading branch information
gstarovo committed May 29, 2024
1 parent fe24eaa commit 25d7c87
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,13 @@ jobs:
COVERALLS_FLAG_NAME: ${{ matrix.name }}
COVERALLS_PARALLEL: true
COVERALLS_SERVICE_NAME: github
run: coveralls
PY_VERSION: ${{ matrix.python-version }}
run: |
if [[ $PY_VERSION == "2.6" ]]; then
COVERALLS_SKIP_SSL_VERIFY=1 coveralls
else
coveralls
fi
- name: Publish coverage to Codeclimate
if: ${{ contains(matrix.opt-deps, 'codeclimate') }}
env:
Expand Down

0 comments on commit 25d7c87

Please sign in to comment.