Skip to content

Commit 18f3bd2

Browse files
committed
Generate and upload code coverage
1 parent d5fffca commit 18f3bd2

File tree

4 files changed

+28
-14
lines changed

4 files changed

+28
-14
lines changed

.github/workflows/test.yaml

+18-3
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@ on: [ push, pull_request ]
44

55
jobs:
66
build:
7-
87
runs-on: ubuntu-latest
98
strategy:
109
matrix:
11-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
10+
python-version: ["3.6", "3.7", "3.8", "3.10"]
11+
include:
12+
- python-version: "3.9"
13+
use_coverage: 'coverage'
1214

1315
steps:
1416
- uses: actions/checkout@v2
@@ -31,5 +33,18 @@ jobs:
3133
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
3234
- name: Install Tox and any other packages
3335
run: pip install tox
34-
- name: Run Tox
36+
37+
- name: Test without coverage
38+
if: "! matrix.use_coverage"
3539
run: tox -e py # Run tox using the version of Python in `PATH`
40+
41+
- name: Test with coverage
42+
if: "matrix.use_coverage"
43+
run: tox -e py-coverage
44+
45+
- name: Upload coverage to Codecov
46+
if: "matrix.use_coverage"
47+
uses: codecov/codecov-action@v2
48+
with:
49+
fail_ci_if_error: true
50+
verbose: true

codecov.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# reference: https://docs.codecov.io/docs/codecovyml-reference
2+
coverage:
3+
status:
4+
patch: true
5+
project: false
6+
comment: false

test-requirements.txt

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ mock>=2.0.0
99
sphinx>=1.4 # BSD
1010
recommonmark
1111
sphinx_markdown_tables
12-
codecov>=1.4.0
1312
pycodestyle
1413
autopep8
1514
isort

tox.ini

+4-10
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,11 @@ deps = -r{toxinidir}/test-requirements.txt
1111
-r{toxinidir}/requirements.txt
1212
commands =
1313
python -V
14-
!functional: pytest -vvv -s --ignore=kubernetes/e2e_test
14+
!functional: pytest -vvv -s {env:_TOX_COVERAGE_RUN:} --ignore=kubernetes/e2e_test
1515
functional: {toxinidir}/scripts/kube-init.sh pytest -vvv -s []
16+
coverage: python -m coverage xml
17+
setenv =
18+
coverage: _TOX_COVERAGE_RUN=--cov=kubernetes/watch --cov=kubernetes/config
1619

1720
[testenv:docs]
1821
commands =
@@ -21,12 +24,3 @@ commands =
2124
[testenv:update-pycodestyle]
2225
commands =
2326
{toxinidir}/scripts/update-pycodestyle.sh
24-
25-
[testenv:coverage]
26-
commands =
27-
python -V
28-
pytest --cov=kubernetes/watch --cov=kubernetes/config kubernetes/watch kubernetes/config
29-
30-
[testenv:codecov]
31-
commands =
32-
codecov

0 commit comments

Comments
 (0)