From 9b58cf3d0cb9ce03988cdef83c6d7d8fdf2a3ace Mon Sep 17 00:00:00 2001 From: Tal Einat <532281+taleinat@users.noreply.github.com> Date: Tue, 7 Jun 2022 09:58:04 +0300 Subject: [PATCH] increase test wait time --- tests/test_0_watchmedo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_0_watchmedo.py b/tests/test_0_watchmedo.py index 9602b15c..72f49d29 100644 --- a/tests/test_0_watchmedo.py +++ b/tests/test_0_watchmedo.py @@ -103,7 +103,7 @@ def test_shell_command_subprocess_termination_nowait(tmpdir, capfd): assert not trick.is_process_running() trick.on_any_event(FileModifiedEvent("foo/bar.baz")) assert trick.is_process_running() - time.sleep(2) + time.sleep(3) assert not trick.is_process_running()