We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d050597 commit 859850aCopy full SHA for 859850a
tests/test_gui/test_thread_worker.py
@@ -78,7 +78,9 @@ def checkBlockingResult(res):
78
barr.wait()
79
w3.abort()
80
threadBlock.set()
81
- with qtbot.waitSignals([w3.finished, w3.busyChanged]):
+ # qtbot.waitSignals([w3.finished, w3.busyChanged]) fails with a KeyError
82
+ # (Windows, PySide6 6.10.0, pytest-qt 4.5.0)
83
+ with qtbot.waitSignal(w3.finished), qtbot.waitSignal(w3.busyChanged):
84
w3(1, False)
85
86
qtbot.waitUntil(lambda: w3.busy is False)
0 commit comments