From cf94599c2544d6831c8afbe7b340082077557ed1 Mon Sep 17 00:00:00 2001 From: wakonig_k Date: Wed, 7 Aug 2024 12:25:38 +0200 Subject: [PATCH] test: removed quit from teardown --- tests/unit_tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit_tests/conftest.py b/tests/unit_tests/conftest.py index b4941143..2ba47d43 100644 --- a/tests/unit_tests/conftest.py +++ b/tests/unit_tests/conftest.py @@ -12,7 +12,7 @@ def qapplication(qtbot): # pylint: disable=unused-argument yield qapp = QApplication.instance() - qapp.quit() + # qapp.quit() qapp.processEvents() try: qtbot.waitUntil(lambda: qapp.topLevelWidgets() == [])