From 14b54bf764db19d946a999a5817d0fa6aaf98346 Mon Sep 17 00:00:00 2001 From: yihuaf Date: Wed, 15 Sep 2021 01:11:03 +0200 Subject: [PATCH] Don't skip the timeout test --- src/hooks.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/hooks.rs b/src/hooks.rs index e52731eea..8191cd25a 100644 --- a/src/hooks.rs +++ b/src/hooks.rs @@ -206,10 +206,8 @@ mod test { #[test] #[serial] - #[ignore] // This will test executing hook with a timeout. Since the timeout is set in // secs, minimally, the test will run for 1 second to trigger the timeout. - // Therefore, we leave this test in the normal execution. fn test_run_hook_timeout() -> Result<()> { let default_container: Container = Default::default(); // We use `tail -f /dev/null` here to simulate a hook command that hangs.