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

iplweb / bpp / 3e1b55a1-af23-4020-b9e5-0d59a4e64a7f

11 May 2025 08:26PM UTC coverage: 46.882% (+4.6%) from 42.254%
3e1b55a1-af23-4020-b9e5-0d59a4e64a7f

push

circleci

mpasternak
Merge branch 'release/v202505.1179'

81 of 116 new or added lines in 15 files covered. (69.83%)

1746 existing lines in 100 files now uncovered.

17354 of 37016 relevant lines covered (46.88%)

1.21 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):
3✔
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):
3✔
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