File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -23,12 +23,12 @@ jobs:
2323 set -e # Exit immediately if a command exits with a non-zero status.
2424 set -u # Exit immediately if a variable is not defined.
2525
26- docker run flask-inputfilter coverage run --source=flask_inputfilter -m pytest test/
26+ docker run -v /tmp/.coverage:/app/.coverage flask-inputfilter coverage run --source=flask_inputfilter -m pytest test/
2727
2828 - name : Upload coverage to Coveralls
2929 env :
3030 COVERALLS_REPO_TOKEN : ${{ secrets.COVERALLS_REPO_TOKEN }}
31- run : docker run -e COVERALLS_REPO_TOKEN=${{ secrets.COVERALLS_REPO_TOKEN }} flask-inputfilter coveralls
31+ run : docker run -v /tmp/.coverage:/app/.coverage - e COVERALLS_REPO_TOKEN=${{ secrets.COVERALLS_REPO_TOKEN }} flask-inputfilter coveralls
3232
3333 - name : Run code style checks
3434 run : |
Original file line number Diff line number Diff line change @@ -7,3 +7,4 @@ pillow==8.0.0
77pytest
88requests == 2.22.0
99coveralls
10+ coverage
You can’t perform that action at this time.
0 commit comments