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

iplweb / bpp / 1ea03b9b-7097-444d-8202-6cdc97ff0c74

03 Mar 2025 07:38PM UTC coverage: 46.107% (+0.1%) from 45.98%
1ea03b9b-7097-444d-8202-6cdc97ff0c74

push

circleci

mpasternak
Merge branch 'release/v202503.1161'

2 of 5 new or added lines in 4 files covered. (40.0%)

1318 existing lines in 80 files now uncovered.

16570 of 35938 relevant lines covered (46.11%)

0.84 hits per line

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

41.67
src/formdefaults/util.py
1
def full_name(o):
2✔
UNCOV
2
    module = o.__class__.__module__
1✔
UNCOV
3
    if module is None or module == str.__class__.__module__:
1✔
4
        return o.__class__.__name__
×
UNCOV
5
    return module + "." + o.__class__.__name__
1✔
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