From 2cadd8f855113869a82ce197b0b95210cdbc239c Mon Sep 17 00:00:00 2001 From: Cyrus Leung Date: Tue, 22 Oct 2024 10:47:29 +0800 Subject: [PATCH] [CI/Build] Remove unnecessary `fork_new_process` (#9484) Signed-off-by: qishuai --- tests/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/utils.py b/tests/utils.py index 2ab7329485dfc..e983104e3cb0c 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -587,7 +587,7 @@ def large_gpu_test(*, min_gb: int): ) def wrapper(f: Callable[_P, None]) -> Callable[_P, None]: - return test_skipif(fork_new_process_for_each_test(f)) + return test_skipif(f) return wrapper