
* Improve import times * add lazy loading to rx.el * add lazy loading to reflex core components * minor refactor * Get imports working with reflex web * get imports to work with all reflex examples * refactor to define imports only in the root. * lint * deadcode remove * update poetry deps * unit tests fix * app_harness fix * app_harness fix * pyi file generate * pyi file generate * sort pyi order * fix pyi * fix docker ci * rework pyi-generator * generate pyi for __init__ files * test pyright * test pyright ci * partial pyright fix * more pyright fix * pyright fix * fix pyi_generator * add rx.serializer and others * add future annotation import which fixes container CI, then also load recharts lazily * add new pyi files * pyright fix * minor fixes for reflex-web and flexdown * forward references for py38 * ruff fix * pyi fix * unit tests fix * reduce coverage to 68% * reduce coverage to 67% * reduce coverage to 66%as a workaround to coverage's rounding issue * reduce coverage to 66%as a workaround to coverage's rounding issue * exclude lazy_loader dependency review checks. * its lazy-loader * Add docstrings and regenerate pyi files * add link * address Pr comments * CI fix * partially address PR comments. * edit docstrings and fix integration tests * fix typo in docstring * pyi fix
41 lines
857 B
INI
41 lines
857 B
INI
[run]
|
|
source = reflex
|
|
branch = true
|
|
omit =
|
|
*/pyi_generator.py
|
|
reflex/__main__.py
|
|
reflex/app_module_for_backend.py
|
|
reflex/components/chakra/*
|
|
reflex/experimental/*
|
|
|
|
[report]
|
|
show_missing = true
|
|
# TODO bump back to 79
|
|
fail_under = 66
|
|
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
|