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

iplweb / bpp / 740231c0-9328-4d43-8cf8-cce29c833ecd

31 Aug 2025 11:09PM UTC coverage: 37.271% (-9.8%) from 47.085%
740231c0-9328-4d43-8cf8-cce29c833ecd

push

circleci

mpasternak
Fix circleci maybe

16449 of 44133 relevant lines covered (37.27%)

0.37 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):
1✔
2
    module = o.__class__.__module__
×
3
    if module is None or module == str.__class__.__module__:
×
4
        return o.__class__.__name__
×
5
    return module + "." + o.__class__.__name__
×
6

7

8
def get_python_class_by_name(full_name):
1✔
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