We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d95738 commit 8bb6880Copy full SHA for 8bb6880
.github/workflows/ci.yml
@@ -33,11 +33,12 @@ jobs:
33
pip install -r requirements.txt
34
pip install pytest pytest-cov responses codecov requests-mock
35
- name: Test with pytest
36
- env:
37
- CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
38
run: |
39
pytest --cov=./
40
- bash <(curl -s https://codecov.io/bash)
+ - name: Upload coverage to Codecov
+ uses: codecov/codecov-action@v1
+ with:
41
+ token: ${{ secrets.CODECOV_TOKEN }}
42
43
- name: Notify slack success
44
if: success()
0 commit comments