0
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2025-07-14 11:41:49 +02:00

fix: always add a QApplication for tests

This commit is contained in:
2024-07-26 11:57:49 +02:00
committed by wakonig_k
parent 3d681f77e1
commit 61a4e32deb

View File

@ -5,6 +5,11 @@ from bec_widgets.qt_utils import error_popups
from bec_widgets.utils import bec_dispatcher as bec_dispatcher_module
@pytest.fixture(autouse=True)
def qapplication(qapp): # pylint: disable=unused-argument
yield
@pytest.fixture(autouse=True)
def rpc_register():
yield RPCRegister()
@ -12,7 +17,7 @@ def rpc_register():
@pytest.fixture(autouse=True)
def bec_dispatcher(threads_check):
def bec_dispatcher(threads_check): # pylint: disable=unused-argument
bec_dispatcher = bec_dispatcher_module.BECDispatcher()
yield bec_dispatcher
bec_dispatcher.disconnect_all()