From b130203a0a497d26f438a6ab3c9511a3c3de60ab Mon Sep 17 00:00:00 2001 From: yuvipanda Date: Mon, 24 Dec 2018 13:09:27 -0800 Subject: [PATCH] Wait more time in atexitasync test before SIGTERM CircleCI is slower than my computer --- tests/test_atexitasync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_atexitasync.py b/tests/test_atexitasync.py index 4b7a46d..2b3c441 100644 --- a/tests/test_atexitasync.py +++ b/tests/test_atexitasync.py @@ -31,7 +31,7 @@ def _handle_sigterm(received_signum): proc = subprocess.Popen([sys.executable, '-c', CHILD_CODE], stdout=subprocess.PIPE) # Give the process time to register signal handlers - time.sleep(0.2) + time.sleep(0.5) proc.send_signal(signum) # Make sure the signal is handled by our handler in the code