[CI/Build] Fix large_gpu_mark reason (#10070)

Signed-off-by: Isotr0py <2037008807@qq.com>
This commit is contained in:
Isotr0py
2024-11-06 16:50:37 +08:00
committed by GitHub
parent 21063c11c7
commit a5fda50a10

View File

@ -699,7 +699,7 @@ def large_gpu_mark(min_gb: int) -> pytest.MarkDecorator:
return pytest.mark.skipif(
memory_gb < min_gb,
reason=f"Need at least {memory_gb}GB GPU memory to run the test.",
reason=f"Need at least {min_gb}GB GPU memory to run the test.",
)