(self)
| 103 | # needed to debug IPC issues. |
| 104 | @pytest.mark.skip |
| 105 | def test_connect_alot(self) -> None: |
| 106 | t0 = time.time() |
| 107 | for i in range(1000): |
| 108 | try: |
| 109 | print(i, "start") |
| 110 | self.test_connect_twice() |
| 111 | finally: |
| 112 | t1 = time.time() |
| 113 | print(i, t1 - t0) |
| 114 | sys.stdout.flush() |
| 115 | t0 = t1 |
| 116 | |
| 117 | |
| 118 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected