1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
[bdist_wheel]
universal = 1
[metadata]
license_file = LICENSE.txt
[coverage:run]
# we could also use branch coverage
branch = False
# already specified by call to pytest using --cov=can
#source = can
omit =
# legacy code
can/CAN.py
[coverage:report]
# two digits after decimal point
precision = 3
show_missing = True
exclude_lines =
# Have to re-enable the standard pragma, see https://coverage.readthedocs.io/en/coverage-4.5.1a/config.html#syntax
pragma: no cover
# Don't complain if non-runnable code isn't run:
if __name__ == .__main__.:
|