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 e988a50 commit 360d4a8Copy full SHA for 360d4a8
.github/workflows/test.yml
@@ -29,4 +29,9 @@ jobs:
29
run: |
30
.github/bump_version ./ minor > atlassian/VERSION
31
make docker-qa PYTHON_VERSION=${{matrix.python-version}}
32
-
+ - name: Creating coverage report
33
+ if: ${{ ( matrix.python-version == '3.8' ) }}
34
+ uses: codecov/codecov-action@v1
35
+ with:
36
+ files: ./coverage.xml
37
+ fail_ci_if_error: true
requirements-dev.txt
@@ -5,3 +5,5 @@ pytest-cov
5
flake8
6
black
7
tox
8
+coverage
9
+codecov
tox.ini
@@ -12,7 +12,7 @@ deps =
12
coverage
13
commands =
14
coverage erase
15
- pytest -v --cov=atlassian --cov-branch
+ pytest -v --cov=atlassian --cov-branch --cov-report=xml
16
coverage html
17
extras = kerberos
18
parallel_show_output = true
0 commit comments