()
| 80 | @skipOnTravis |
| 81 | def test_add_callback_wakeup_other_thread(self): |
| 82 | def target(): |
| 83 | # sleep a bit to let the ioloop go into its poll loop |
| 84 | time.sleep(0.01) |
| 85 | self.stop_time = time.time() |
| 86 | self.io_loop.add_callback(self.stop) |
| 87 | |
| 88 | thread = threading.Thread(target=target) |
| 89 | self.io_loop.add_callback(thread.start) |
nothing calls this directly
no test coverage detected