Skip to content

Commit 82e4017

Browse files
committed
add coverage to project
We add a separate tox environment for the coverage because it cannot track the selenium tests. In the coverage environment the tests/notebooks/*py are just run, so the coverage through selenium actions is not covered.
1 parent 366acca commit 82e4017

File tree

3 files changed

+36
-2
lines changed

3 files changed

+36
-2
lines changed

.codecov.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
coverage:
2+
status:
3+
project:
4+
default:
5+
target: 80%
6+
patch:
7+
default:
8+
target: 80%
9+
10+
comment: on

.github/workflows/tests.yml

+8
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,11 @@ jobs:
2828

2929
- name: run Python tests
3030
run: tox -e tests
31+
32+
- name: run Python tests for coverage
33+
run: tox -e coverage
34+
- uses: codecov/codecov-action@v3
35+
with:
36+
files: coverage.xml
37+
verbose: true
38+

tox.ini

+18-2
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,34 @@ setenv =
1919
JUPYTER_CONFIG_DIR={envdir}/etc/jupyter
2020
JUPYTER_DATA_DIR={envdir}/share/jupyter
2121
deps =
22-
notebook==7.0.2
2322
pytest
23+
# selenium juypter notebook tests
24+
notebook==7.0.2
2425
# fixing selenium version to have backwards-compatibility with pytest-selenium
2526
# see https://github.com/robotframework/SeleniumLibrary/issues/1835#issuecomment-1581426365
26-
selenium==4.9.0
27+
selenium==4.9.0
2728
pytest-selenium
2829
jupytext==1.15.0
2930
commands =
3031
# converts the python files to ipython notebooks
3132
jupytext tests/notebooks/*.py --to ipynb
3233
pytest {posargs:-s -v} --driver Firefox
3334

35+
[testenv:coverage]
36+
# We do coverage in a separate environment that skips the selenium tests but
37+
# includes the jupytext notebook files, because coverage is incompatible with
38+
# selenium
39+
deps =
40+
pytest
41+
pytest-cov
42+
coverage[toml]
43+
selenium==4.9.0
44+
commands =
45+
pytest --cov=scwidgets --ignore=tests/test_widgets.py -o testpaths="tests tests/notebooks/*py"
46+
47+
commands_post =
48+
coverage xml
49+
3450
[testenv:docs]
3551
deps =
3652
-r docs/requirements.txt

0 commit comments

Comments
 (0)