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 b64e0a7 commit f705925Copy full SHA for f705925
docs/index.rst
@@ -135,9 +135,10 @@ ensuring the results are correct::
135
with qtbot.waitSignal(app.worker.finished, timeout=10000) as blocker:
136
blocker.connect(app.worker.failed) # Can add other signals to blocker
137
app.worker.start()
138
- # Test will wait here until either signal is emitted, or 10 seconds has elapsed
+ # Test will block at this point until signal is emitted or
139
+ # 10 seconds has elapsed
140
- assert blocker.signal_triggered # Assuming the work took less than 10 seconds
141
+ assert blocker.signal_triggered, "process timed-out"
142
assert_application_results(app)
143
144
0 commit comments