• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

iplweb / bpp / 18634744198

19 Oct 2025 07:00PM UTC coverage: 31.618% (-29.9%) from 61.514%
18634744198

push

github

mpasternak
Merge branch 'release/v202510.1270'

657 of 9430 branches covered (6.97%)

Branch coverage included in aggregate %.

229 of 523 new or added lines in 42 files covered. (43.79%)

11303 existing lines in 316 files now uncovered.

14765 of 39346 relevant lines covered (37.53%)

0.38 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

42.86
src/formdefaults/util.py
1
def full_name(o):
1✔
2
    module = o.__class__.__module__
1✔
3
    if module is None or module == str.__class__.__module__:
1!
4
        return o.__class__.__name__
×
5
    return module + "." + o.__class__.__name__
1✔
6

7

8
def get_python_class_by_name(full_name):
1✔
UNCOV
9
    import importlib
×
10

UNCOV
11
    s_module = full_name[: full_name.rfind(".")]
×
UNCOV
12
    s_klass = full_name[full_name.rfind(".") + 1 :]
×
13

UNCOV
14
    py_module = importlib.import_module(s_module)
×
UNCOV
15
    py_klass = getattr(py_module, s_klass)
×
16

UNCOV
17
    return py_klass
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc