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

dynobo / normcap / 18953976799

30 Oct 2025 08:21PM UTC coverage: 80.119% (-1.4%) from 81.509%
18953976799

Pull #798

github

web-flow
Merge a4477b844 into 50be529a6
Pull Request #798: Refactoring

858 of 1175 new or added lines in 51 files covered. (73.02%)

23 existing lines in 5 files now uncovered.

2974 of 3712 relevant lines covered (80.12%)

4.57 hits per line

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

70.0
/normcap/__init__.py
1
"""NormCap Package."""
2

3
from __future__ import annotations
6✔
4

5
import os
6✔
6
from importlib.metadata import PackageNotFoundError, version
6✔
7

8
try:
6✔
9
    __version__ = version("normcap")
6✔
10
except PackageNotFoundError:
×
11
    __version__ = "unknown"
×
12

13
app_id = "com.github.dynobo.normcap"
6✔
14
if os.environ.get("NORMCAP_DEV"):
6✔
15
    # This alternative app id is meant for normcap developers only. It allows to
16
    # setup two different NormCap versions (e.g. a stable one mand one for development)
17
    # with different .desktop laucherns, which both can ask for permission to talk to
18
    # DBus Portal.
NEW
19
    app_id += "_dev"
×
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