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 38b470a commit 227146dCopy full SHA for 227146d
tests/test_kernelapp.py
@@ -38,9 +38,12 @@ def trigger_stop():
38
app.stop()
39
40
thread = threading.Thread(target=trigger_stop)
41
+ t0 = time.time()
42
thread.start()
43
app.init_sockets()
44
app.start()
45
+ t1 = time.time()
46
+ assert t1 - t0 >= 1
47
app.cleanup_connection_file()
48
app.kernel.destroy()
49
app.close()
0 commit comments