Skip to content

Commit fa2ebb1

Browse files
Ignore pyparsing depracation warnings (#337)
1 parent 89ff4e0 commit fa2ebb1

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,9 @@ addopts = ["-ra", "--showlocals", "--strict-markers", "--strict-config"]
9696
xfail_strict = true
9797
filterwarnings = [
9898
"error",
99-
"ignore:Unsupported Windows version.*ONNX Runtime supports Windows 10 and above, only.:UserWarning"
99+
"ignore:Unsupported Windows version.*ONNX Runtime supports Windows 10 and above, only.:UserWarning",
100+
# pyparsing 3.x deprecated all camelCase methods in favor of snake_case
101+
"ignore:'[a-zA-Z]+' deprecated - use '[a-z_]+':DeprecationWarning",
100102
]
101103
log_cli_level = "INFO"
102104
testpaths = [

0 commit comments

Comments
 (0)