Skip to content

Commit

Permalink
Pytest: Ignore DeprecationWarning from pandas (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
smithara authored Jan 22, 2024
1 parent b2cabf8 commit dd7164c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,10 @@ viresclient = "viresclient.commands.viresclient:start"
minversion = "6.0"
addopts = ["-ra", "--showlocals", "--strict-markers", "--strict-config"]
xfail_strict = true
filterwarnings = ["error"]
filterwarnings = [
"error",
"ignore:(\nPyarrow will become a required dependency of pandas):DeprecationWarning",
]
testpaths = [
"tests",
]
Expand Down

0 comments on commit dd7164c

Please sign in to comment.