From f085995a7b073f0f4a330f469d9f489160e5b7a1 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) --- tests/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/utils.py b/tests/utils.py index 2ab73294..e983104e 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