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

iplweb / bpp / f5d65e29-328e-4c81-a495-f66fad1f6d96

04 Jun 2025 05:40PM UTC coverage: 44.2% (-2.4%) from 46.628%
f5d65e29-328e-4c81-a495-f66fad1f6d96

push

circleci

mpasternak
Merge branch 'release/v202506.1182'

7 of 40 new or added lines in 4 files covered. (17.5%)

1509 existing lines in 79 files now uncovered.

16418 of 37145 relevant lines covered (44.2%)

0.81 hits per line

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

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

7

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

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

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

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