Skip to content

Commit

Permalink
Give the test more time to shut down (#115)
Browse files Browse the repository at this point in the history
CI has been seeing some flakes with the 1 second timeout.
  • Loading branch information
jwnimmer-tri authored Jan 23, 2025
1 parent 666307e commit cddd55c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/server_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def setUp(self, extra_server_args=None):

def tearDown(self):
self.server_proc.terminate()
self.assertEqual(self.server_proc.wait(1.0), -signal.SIGTERM)
self.assertEqual(self.server_proc.wait(10.0), -signal.SIGTERM)

def _render_and_check(
self,
Expand Down

0 comments on commit cddd55c

Please sign in to comment.