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 6a68f02 commit 104ef76Copy full SHA for 104ef76
1 file changed
tests/test_eventloop.py
@@ -64,18 +64,20 @@ def do_thing():
64
time.sleep(1)
65
try:
66
kernel.app_wrapper.app.quit()
67
+ kernel.app_wrapper.app.destroy()
68
# guard for tk failing to start (if there is no display)
69
except AttributeError:
70
pass
71
72
t = threading.Thread(target=do_thing)
73
+ t.daemon = True
74
t.start()
75
76
77
loop_tk(kernel)
78
except Exception:
79
- t.join()
80
+ t.join(1)
81
82
83
@windows_skip
0 commit comments