Skip to content

Commit cddd55c

Browse files
authored
Give the test more time to shut down (#115)
CI has been seeing some flakes with the 1 second timeout.
1 parent 666307e commit cddd55c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/server_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def setUp(self, extra_server_args=None):
6969

7070
def tearDown(self):
7171
self.server_proc.terminate()
72-
self.assertEqual(self.server_proc.wait(1.0), -signal.SIGTERM)
72+
self.assertEqual(self.server_proc.wait(10.0), -signal.SIGTERM)
7373

7474
def _render_and_check(
7575
self,

0 commit comments

Comments
 (0)