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

feeluown / FeelUOwn / 3607006942

pending completion
3607006942

push

github

GitHub
gui: new search page (#627)

155 of 155 new or added lines in 6 files covered. (100.0%)

7619 of 12598 relevant lines covered (60.48%)

0.6 hits per line

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

47.06
/feeluown/gui/widgets/header.py
1
from PyQt5.QtGui import QFont
1✔
2
from PyQt5.QtWidgets import QLabel
1✔
3

4

5
class BaseHeader(QLabel):
1✔
6
    def __init__(self, font_size, *args, **kwargs):
1✔
7
        super().__init__(*args, **kwargs)
×
8

9
        font = self.font()
×
10
        font.setPixelSize(font_size)
×
11
        self.setFont(font)
×
12

13

14
class LargeHeader(BaseHeader):
1✔
15
    def __init__(self, *args, **kwargs):
1✔
16
        super().__init__(20, *args, **kwargs)
×
17

18
        font = self.font()
×
19
        font.setWeight(QFont.DemiBold)
×
20
        self.setFont(font)
×
21

22

23
class MidHeader(BaseHeader):
1✔
24
    def __init__(self, *args, **kwargs):
1✔
25
        super().__init__(15, *args, **kwargs)
×
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

© 2025 Coveralls, Inc