Unverified Commit 030ceadf authored by mohammedabdulwahhab's avatar mohammedabdulwahhab Committed by GitHub
Browse files

fix: ignore setuptools warning in pytest (#1212)

parent 75e774d4
...@@ -142,7 +142,8 @@ filterwarnings = [ ...@@ -142,7 +142,8 @@ filterwarnings = [
"error", "error",
"ignore:.*cuda*:DeprecationWarning", # Need this to avoid deprecation warnings from CUDA in tensorrt_llm. "ignore:.*cuda*:DeprecationWarning", # Need this to avoid deprecation warnings from CUDA in tensorrt_llm.
"ignore:.*pkg_resources.*:DeprecationWarning", "ignore:.*pkg_resources.*:DeprecationWarning",
"ignore:.*multipart.*:PendingDeprecationWarning" "ignore:.*pkg_resources.*:UserWarning",
"ignore:.*multipart.*:PendingDeprecationWarning",
] ]
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment