Further tweaks to help the last step

This commit is contained in:
Jean-Paul Calderone 2021-01-05 20:31:32 -05:00
parent bebcca39f6
commit 9a8a61b740

View File

@ -92,10 +92,14 @@ jobs:
needs: needs:
- "coverage" - "coverage"
runs-on: "ubuntu-latest" runs-on: "ubuntu-latest"
# Get a Python 3 environment because only the Python 3 release of
# coveralls-python has the `--finish` flag...
container: "python:3-slim"
steps: steps:
- name: "Finish Coveralls Reporting" - name: "Finish Coveralls Reporting"
run: | run: |
pip install coveralls # Also install wheel otherwise `docopt` may fail to build
pip install wheel coveralls
python -m coveralls --finish python -m coveralls --finish
env: env:
# Some magic value required for some magic reason. # Some magic value required for some magic reason.