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 85e4e5e commit 8dc8691Copy full SHA for 8dc8691
.github/workflows/test.yml
@@ -32,5 +32,11 @@ jobs:
32
- name: Run tests
33
run: |
34
coverage run --source grafana_client -m xmlrunner discover -o test-reports
35
- codecov
+ coverage xml
36
shell: bash
37
+
38
+ # https://github.com/codecov/codecov-action
39
+ - name: Upload coverage results to Codecov
40
+ uses: codecov/codecov-action@v2
41
+ with:
42
+ fail_ci_if_error: true
.gitignore
@@ -41,6 +41,7 @@ pip-log.txt
pip-delete-this-directory.txt
43
# Unit test / coverage reports
44
+test-reports/
45
htmlcov/
46
.tox/
47
.coverage
0 commit comments