move decorator to test method instead of class

This commit is contained in:
Wing Lian
2025-04-30 14:38:36 -04:00
parent 82b16bd040
commit f4a0f496a0
2 changed files with 3 additions and 3 deletions

View File

@@ -105,7 +105,7 @@ def require_vllm(test_case):
return False
return unittest.skipUnless(
is_vllm_installed(), "test requires a vllm to be installed"
is_vllm_installed(), "test requires vllm to be installed"
)(test_case)
@@ -123,7 +123,7 @@ def require_llmcompressor(test_case):
return False
return unittest.skipUnless(
is_llmcompressor_installed(), "test requires a llmcompressor to be installed"
is_llmcompressor_installed(), "test requires llmcompressor to be installed"
)(test_case)