trying to solve pipeline issue: missing examples

This commit is contained in:
2023-01-24 16:08:13 +01:00
parent 9ca9cc6841
commit 80a43683d2
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ class TestViewUnit(unittest.TestCase):
self.app = QApplication(sys.argv)
theme.apply(self.app)
# ctrl_c.setup(self.app)
self.mw = MainWindow()
self.mw = MainWindow(add_examples=True)
self.mw.show()

View File

@ -16,7 +16,7 @@ class TestViewUnit(unittest.TestCase):
def setUp(self) -> None:
print("setup")
self.app = QApplication(sys.argv)
self.mw = MainWindow()
self.mw = MainWindow(add_examples=True)
self.mw.show()