
* build pyi files when building/publishing 3rd party * fix typo in workflow * add future annotation * add tests to pass coverage check * add more unit tests * omit pyi_generator from test coverage * change black from dev deps to direct deps * remake all pyi * format pyi if black is present, return as if otherwise * fix requested changes --------- Co-authored-by: Masen Furer <m_github@0x26.net>
37 lines
740 B
INI
37 lines
740 B
INI
[run]
|
|
source = reflex
|
|
branch = true
|
|
omit =
|
|
*/pyi_generator.py
|
|
|
|
[report]
|
|
show_missing = true
|
|
# TODO bump back to 79
|
|
fail_under = 68
|
|
precision = 2
|
|
|
|
# Regexes for lines to exclude from consideration
|
|
exclude_also =
|
|
# Don't complain about missing debug-only code:
|
|
def __repr__
|
|
if self\.debug
|
|
|
|
# Don't complain if tests don't hit defensive assertion code:
|
|
raise AssertionError
|
|
raise NotImplementedError
|
|
|
|
# Don't complain if non-runnable code isn't run:
|
|
if 0:
|
|
if __name__ == .__main__.:
|
|
|
|
# Don't complain about abstract methods, they aren't run:
|
|
@(abc\.)?abstractmethod
|
|
|
|
# Don't complain about overloaded methods:
|
|
@overload
|
|
|
|
ignore_errors = True
|
|
|
|
[html]
|
|
directory = coverage_html_report
|