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

iplweb / bpp / 8a2d51c9-9fd8-4164-bf7a-83c800f9c726

01 Apr 2025 12:14PM UTC coverage: 46.628% (+6.8%) from 39.858%
8a2d51c9-9fd8-4164-bf7a-83c800f9c726

push

circleci

mpasternak
Merge branch 'release/v202504.1174'

12 of 31 new or added lines in 7 files covered. (38.71%)

696 existing lines in 63 files now uncovered.

17098 of 36669 relevant lines covered (46.63%)

0.84 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