We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79325be commit da6e08aCopy full SHA for da6e08a
.github/workflows/test.yml
@@ -117,8 +117,7 @@ jobs:
117
cd tests
118
pytest --durations 10 --cov repo2docker -v ${{ matrix.repo_type }}
119
120
- # Action Repo: https://github.com/codecov/codecov-action
121
- - uses: codecov/codecov-action@v1
122
- working-directory: ./tests
123
- with:
124
- directory: ./tests
+ - name: "Upload code coverage stats"
+ run: |
+ pip install codecov
+ pushd tests && codecov && popd
0 commit comments