Skip to content

Commit a25dc00

Browse files
committed
Add coverage analysis for tests of the python package
1 parent 1f38f6c commit a25dc00

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

python/.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ venv/
1010
dist/*
1111
*.pickle
1212
.s.yml
13-
.DS_Store
13+
.DS_Store

python/pytest.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ omit =
1717
*/__init__.py
1818
[coverage:report]
1919
# Setting the report format
20-
show_missing = True # Show missing lines in the report
20+
show_missing= True # Show missing lines in the report
2121
skip_covered = True # Skip files that are fully covered
2222

2323
pytest --cov=python tests/ --cov-report html

python/tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ commands =
1818
python -m coverage combine
1919
python -m coverage report -m
2020
python -m coverage html # Generate HTML report
21-
python -m coverage json # Generate JSON report
21+
python -m coverage json # Generate JSON

0 commit comments

Comments
 (0)