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

int-brain-lab / iblrig / 9032957364

10 May 2024 01:25PM UTC coverage: 48.538% (+1.7%) from 46.79%
9032957364

Pull #643

github

74d2ec
web-flow
Merge aebf2c9af into ec2d8e4fe
Pull Request #643: 8.19.0

377 of 1074 new or added lines in 38 files covered. (35.1%)

977 existing lines in 19 files now uncovered.

3253 of 6702 relevant lines covered (48.54%)

0.97 hits per line

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

12.24
/iblrig/gui/ui_validation.py
1
# -*- coding: utf-8 -*-
2

3
# Form implementation generated from reading ui file 'iblrig\gui\ui_validation.ui'
4
#
5
# Created by: PyQt5 UI code generator 5.15.10
6
#
7
# WARNING: Any manual changes made to this file will be lost when pyuic5 is
8
# run again.  Do not edit this file unless you know what you are doing.
9

10

11
from PyQt5 import QtCore, QtGui, QtWidgets
2✔
12

13

14
class Ui_validation(object):
2✔
15
    def setupUi(self, validation):
2✔
NEW
16
        validation.setObjectName("validation")
×
NEW
17
        validation.setWindowModality(QtCore.Qt.ApplicationModal)
×
NEW
18
        validation.resize(500, 357)
×
NEW
19
        self.verticalLayout = QtWidgets.QVBoxLayout(validation)
×
NEW
20
        self.verticalLayout.setObjectName("verticalLayout")
×
NEW
21
        self.treeView = QtWidgets.QTreeView(validation)
×
NEW
22
        self.treeView.setVerticalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOn)
×
NEW
23
        self.treeView.setHorizontalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff)
×
NEW
24
        self.treeView.setEditTriggers(QtWidgets.QAbstractItemView.NoEditTriggers)
×
NEW
25
        self.treeView.setProperty("showDropIndicator", False)
×
NEW
26
        self.treeView.setSelectionMode(QtWidgets.QAbstractItemView.SingleSelection)
×
NEW
27
        self.treeView.setAllColumnsShowFocus(True)
×
NEW
28
        self.treeView.setWordWrap(True)
×
NEW
29
        self.treeView.setObjectName("treeView")
×
NEW
30
        self.treeView.header().setVisible(False)
×
NEW
31
        self.treeView.header().setStretchLastSection(False)
×
NEW
32
        self.verticalLayout.addWidget(self.treeView)
×
NEW
33
        self.horizontalLayout = QtWidgets.QHBoxLayout()
×
NEW
34
        self.horizontalLayout.setObjectName("horizontalLayout")
×
NEW
35
        self.pushButtonRerun = QtWidgets.QPushButton(validation)
×
NEW
36
        self.pushButtonRerun.setEnabled(False)
×
NEW
37
        self.pushButtonRerun.setObjectName("pushButtonRerun")
×
NEW
38
        self.horizontalLayout.addWidget(self.pushButtonRerun)
×
NEW
39
        spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
×
NEW
40
        self.horizontalLayout.addItem(spacerItem)
×
NEW
41
        self.pushButtonOK = QtWidgets.QPushButton(validation)
×
NEW
42
        self.pushButtonOK.setDefault(True)
×
NEW
43
        self.pushButtonOK.setObjectName("pushButtonOK")
×
NEW
44
        self.horizontalLayout.addWidget(self.pushButtonOK)
×
NEW
45
        self.verticalLayout.addLayout(self.horizontalLayout)
×
46

NEW
47
        self.retranslateUi(validation)
×
NEW
48
        QtCore.QMetaObject.connectSlotsByName(validation)
×
49

50
    def retranslateUi(self, validation):
2✔
NEW
51
        _translate = QtCore.QCoreApplication.translate
×
NEW
52
        validation.setWindowTitle(_translate("validation", "System Validation"))
×
NEW
53
        self.pushButtonRerun.setText(_translate("validation", "Rerun"))
×
NEW
54
        self.pushButtonOK.setText(_translate("validation", "Close"))
×
55
from iblrig.gui import resources_rc
2✔
56

57

58
if __name__ == "__main__":
2✔
NEW
59
    import sys
×
NEW
60
    app = QtWidgets.QApplication(sys.argv)
×
NEW
61
    validation = QtWidgets.QDialog()
×
NEW
62
    ui = Ui_validation()
×
NEW
63
    ui.setupUi(validation)
×
NEW
64
    validation.show()
×
NEW
65
    sys.exit(app.exec_())
×
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