master > master: code py - setup

This commit is contained in:
RD
2022-06-09 18:12:24 +02:00
parent 67aa70edfa
commit 8111b8ef07
7 changed files with 229 additions and 104 deletions

18
code/python/.coveragerc Normal file
View File

@@ -0,0 +1,18 @@
[run]
source="."
[report]
show_missing = true
omit =
# ignore tests folder
tests/*
# ignore thirdparty imports
src/thirdparty/*
# ignore __init__ files (only used for exports)
**/__init__.py
# ignore main.py
main.py
# TODO: increase code-coverage:
precision = 0
exclude_lines =
pragma: no cover