We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08feb22 commit f84351eCopy full SHA for f84351e
1 file changed
.github/workflows/codecov-upload.yml
@@ -18,9 +18,13 @@ jobs:
18
with:
19
python-version: 3.9
20
21
+ - name: Install dependencies
22
+ run: |
23
+ pip install coverage six urllib3 python_dateutil certifi setuptools
24
+
25
- name: Generate coverage report
26
run: |
- pip install coverage
27
+ coverage run -m unittest
28
coverage xml --omit=amazon/*,*/sdk/*
29
30
- name: Upload coverage to Codecov
@@ -29,7 +33,3 @@ jobs:
33
token: ${{ secrets.CODECOV_TOKEN }}
34
fail_ci_if_error: true
31
35
files: ./coverage.xml
32
- flags: unittests
- name: codecov-umbrella
- path_to_write_report: ./coverage/codecov_report.txt
- verbose: true
0 commit comments